Skip to content

Commit e5b5369

Browse files
CI Update: Refactor and fix cmake args
1 parent 74f181f commit e5b5369

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/continuous-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
call-nix-build-and-test-workflow:
9+
call-nix-build-and-test-workflow-continuous:
1010
name: 'test pull request'
1111
uses: ./.github/workflows/nix-ci.yml
1212
with:

.github/workflows/nightly-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
call-nix-build-and-test-workflow:
9+
call-nix-build-and-test-workflow-nightly:
1010
name: 'test master nightly'
1111
uses: ./.github/workflows/nix-ci.yml
1212
with:
1313
ctest_model: Nightly
1414
ctest_build_name_suffix: master
15-
call-linux-build-and-test-workflow:
15+
call-linux-build-and-test-workflow-nightly:
1616
name: 'test linux nightly'
1717
uses: ./.github/workflows/linux-ci.yml
1818
with:

.github/workflows/nix-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ jobs:
9393
cmake_flags: -DENABLE_WALLET=OFF
9494
ctest_extra: ""
9595
config: no-wallet
96-
- system: x86_64-darwin
97-
runner_label: macos-15-intel
96+
- system: x86_64-linux
97+
runner_label: ubuntu-latest
9898
cmake_flags: -DBUILD_GUI=ON
9999
ctest_extra: ""
100100
config: build-gui

scripts/build-unit-test.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ if(WITH_UPDATE AND CTEST_GIT_COMMAND)
175175
ctest_submit(PARTS "Update")
176176
endif()
177177

178-
ctest_configure(OPTIONS "${CONFIG_OPTIONS}")
178+
ctest_configure(OPTIONS ${CONFIG_OPTIONS})
179179
ctest_submit(PARTS "Configure")
180180

181181
ctest_build(

0 commit comments

Comments
 (0)