Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
yobeonline committed Jan 7, 2024
1 parent c223046 commit e121f7c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
matrix:
config: [Release, Debug]
os: [ubuntu-latest, windows-latest]
gcc: [13]
steps:
- uses: actions/checkout@v2

Expand All @@ -17,8 +16,8 @@ jobs:

- name: Set compiler (!Windows)
env:
CC: gcc-${{ matrix.gcc }}
CXX: g++-${{ matrix.gcc }}
CC: gcc-13
CXX: g++-13
TRIPLET: x64-linux
if: runner.os != 'Windows'

Expand All @@ -30,7 +29,7 @@ jobs:
- name: Configure
run: cmake -B build -S . -A x64 -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DVCPKG_TARGET_TRIPLET=${TRIPLET} --toolchain=${VCPKG_INSTALLATION_ROOT}\scripts\buildsystems\vcpkg.cmake

- name: Build
- name: Build
run: cmake --build build --config ${{ matrix.config }} --parallel

- name: Execute
Expand Down

0 comments on commit e121f7c

Please sign in to comment.