Skip to content

Commit bedce01

Browse files
committed
Debug commit
1 parent 37f1a83 commit bedce01

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/build-hpc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,11 @@ jobs:
137137
pushd ${{ github.repository }}
138138
git init
139139
git remote add origin ${{ github.server_url }}/${{ github.repository }}
140+
{% if github.event_name == "pull_request" %}
141+
git fetch origin ${{ github.head_ref }}
142+
{% else %}
140143
git fetch origin ${{ github.sha }}
144+
{% endif %}
141145
git reset --hard FETCH_HEAD
142146
popd
143147
cmake -G Ninja -S ${{ github.repository }} -B build \

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CUR
1616
project( ectrans LANGUAGES C CXX Fortran )
1717
include( ectrans_macros )
1818

19+
message("Sam's test")
20+
1921
# CMake 3.29 adds CMAKE_TEST_LAUNCHER defined either as CMake variable or environment.
2022
# This launcher is a semi-colon-separted list of arguments that is used to launch serial tasks,
2123
# and can be defined during the CMake configuration.

0 commit comments

Comments
 (0)