Skip to content

Commit f560af4

Browse files
committed
Use same build and test action scripts for all OSes
1 parent e50f99b commit f560af4

File tree

5 files changed

+5
-23
lines changed

5 files changed

+5
-23
lines changed

.github/actions/build-windows/action.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ runs:
44
using: composite
55
steps:
66
- name: Build
7-
run: make VERBOSE=1
7+
run: cmake --build . --config Release --verbose
88
shell: bash
99
working-directory: build

.github/actions/ctest-windows/action.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/actions/ctest/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: ctest
1+
name: Test
22

33
runs:
44
using: composite
55
steps:
66
- name: Test
7-
run: ctest --output-on-failure
7+
run: ctest --output-on-failure -C Release
88
shell: bash
99
working-directory: build

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,5 +205,5 @@ jobs:
205205
- uses: actions/checkout@v4
206206
- uses: ./.github/actions/install-from-git
207207
- uses: ./.github/actions/cmake-windows
208-
- uses: ./.github/actions/build-windows
209-
- uses: ./.github/actions/ctest-windows
208+
- uses: ./.github/actions/build
209+
- uses: ./.github/actions/ctest

0 commit comments

Comments
 (0)