Skip to content

Commit

Permalink
The previous test did not work. This is to correct it.
Browse files Browse the repository at this point in the history
  • Loading branch information
aous72 committed Jan 6, 2024
1 parent ea6fb2e commit b20bcb1
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/ccp-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ jobs:
strategy:
matrix:
include: [
{ system: MINGW64, runner: windows-2022 },
{ system: MINGW32, runner: windows-2022 },
{ system: UCRT64, runner: windows-2022 },
{ system: CLANG64, runner: windows-2022 },
{ system: CLANG32, runner: windows-2022 },
{ system: MACOS, runner: macos-latest },
{ system: UBUNTU, runner: ubuntu-latest },
{ system: MacOS, runner: macos-latest },
{ system: Ubuntu-20, runner: ubuntu-20.04 },
{ system: Ubuntu-latest, runner: ubuntu-latest },
]
name: ${{ matrix.system }}
name: ${{ matrix.system }} Build
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3
Expand All @@ -28,11 +24,14 @@ jobs:
working-directory: build

test:
name: tests on Linux and MacOS
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
include: [
{ system: MacOS, runner: macos-latest },
{ system: Ubuntu-latest, runner: ubuntu-latest },
]
name: ${{ matrix.system }} Test
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3
- name: cmake
Expand All @@ -46,11 +45,13 @@ jobs:
working-directory: build

test_windows:
name: tests on Windows
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
include: [
{ system: Windows, runner: windows-latest },
]
name: ${{ matrix.system }} Test
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3
- name: cmake
Expand Down

0 comments on commit b20bcb1

Please sign in to comment.