Skip to content

Commit

Permalink
Use same build and test action scripts for all OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Dec 17, 2024
1 parent e50f99b commit f560af4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 23 deletions.
9 changes: 0 additions & 9 deletions .github/actions/build-windows/action.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ runs:
using: composite
steps:
- name: Build
run: make VERBOSE=1
run: cmake --build . --config Release --verbose
shell: bash
working-directory: build
9 changes: 0 additions & 9 deletions .github/actions/ctest-windows/action.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/actions/ctest/action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ctest
name: Test

runs:
using: composite
steps:
- name: Test
run: ctest --output-on-failure
run: ctest --output-on-failure -C Release
shell: bash
working-directory: build
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,5 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-from-git
- uses: ./.github/actions/cmake-windows
- uses: ./.github/actions/build-windows
- uses: ./.github/actions/ctest-windows
- uses: ./.github/actions/build
- uses: ./.github/actions/ctest

0 comments on commit f560af4

Please sign in to comment.