Skip to content

Commit

Permalink
[test] github actions script update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pusnow committed Mar 29, 2022
1 parent 3098c76 commit 936bac0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-linux-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: ./app/kens/kens-all-run-solution
run: ./app/kens/test-kens-all-run-solution

- name: Test (Unreliable)
working-directory: ${{github.workspace}}/build
shell: bash
run: ./app/kens/kens-all-unreliable-run-solution
run: ./app/kens/test-kens-all-unreliable-run-solution
4 changes: 2 additions & 2 deletions .github/workflows/test-linux-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: docker exec kens-test bash -c "cd /test/build && cmake --build . --config $BUILD_TYPE"

- name: Test
run: docker exec kens-test bash -c "/test/build/app/kens/kens-all-run-solution"
run: docker exec kens-test bash -c "/test/build/app/kens/test-kens-all-run-solution"

- name: Test (Unreliable)
run: docker exec kens-test bash -c "/test/build/app/kens/kens-all-unreliable-run-solution"
run: docker exec kens-test bash -c "/test/build/app/kens/test-kens-all-unreliable-run-solution"
4 changes: 2 additions & 2 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
working-directory: ${{github.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: ./app/kens/kens-all-run-solution
run: ./app/kens/test-kens-all-run-solution

- name: Test (Unreliable)
working-directory: ${{github.workspace}}/build
shell: bash
run: ./app/kens/kens-all-unreliable-run-solution
run: ./app/kens/test-kens-all-unreliable-run-solution
4 changes: 2 additions & 2 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
run: ./app/kens/kens-all-run-solution
run: ./app/kens/test-kens-all-run-solution

- name: Test (Unreliable)
working-directory: ${{github.workspace}}/build
shell: bash
run: ./app/kens/kens-all-unreliable-run-solution
run: ./app/kens/test-kens-all-unreliable-run-solution
4 changes: 2 additions & 2 deletions .github/workflows/test-wsl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: ./app/kens/kens-all-run-solution
run: ./app/kens/test-kens-all-run-solution

- name: Test (Unreliable)
working-directory: ${{github.workspace}}/build
run: ./app/kens/kens-all-unreliable-run-solution
run: ./app/kens/test-kens-all-unreliable-run-solution

0 comments on commit 936bac0

Please sign in to comment.