From 1312a8c79fbb7b5ec9cd889dda76c62c1d7db690 Mon Sep 17 00:00:00 2001 From: Wonsup Yoon Date: Fri, 9 Apr 2021 14:41:51 +0900 Subject: [PATCH] Add unreliable test --- .github/workflows/test-linux-clang.yml | 7 ++++++- .github/workflows/test-linux.yml | 7 ++++++- .github/workflows/test-macos.yml | 5 +++++ .github/workflows/test-windows.yml | 5 +++++ 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-linux-clang.yml b/.github/workflows/test-linux-clang.yml index 58affc2ca..55c03b7bf 100644 --- a/.github/workflows/test-linux-clang.yml +++ b/.github/workflows/test-linux-clang.yml @@ -39,4 +39,9 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build shell: bash - run: ./app/kens/kens-all-run-solution \ No newline at end of file + run: ./app/kens/kens-all-run-solution + + - name: Test (Unreliable) + working-directory: ${{github.workspace}}/build + shell: bash + run: ./app/kens/kens-all-unreliable-run-solution \ No newline at end of file diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 579b524fa..a1d4205ee 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -56,4 +56,9 @@ jobs: working-directory: ${{github.workspace}}/build shell: bash # Execute the build. You can specify a specific target with "--target " - run: ./app/kens/kens-all-run-solution \ No newline at end of file + run: ./app/kens/kens-all-run-solution + + - name: Test (Unreliable) + working-directory: ${{github.workspace}}/build + shell: bash + run: ./app/kens/kens-all-unreliable-run-solution \ No newline at end of file diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index b41d33380..63ea5513f 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -36,3 +36,8 @@ jobs: working-directory: ${{github.workspace}}/build shell: bash run: ./app/kens/kens-all-run-solution + + - name: Test (Unreliable) + working-directory: ${{github.workspace}}/build + shell: bash + run: ./app/kens/kens-all-unreliable-run-solution \ No newline at end of file diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 374cc16f5..0f7f48bd1 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -30,3 +30,8 @@ jobs: shell: cmd working-directory: ${{github.workspace}}/build/app/kens/Debug run: kens-all-run-solution.exe + + - name: Test (Unreliable) + shell: cmd + working-directory: ${{github.workspace}}/build/app/kens/Debug + run: kens-all-unreliable-run-solution.exe \ No newline at end of file