Skip to content

Commit

Permalink
fix(ci): Use GCC 13 on Linux builds.
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Nana <[email protected]>
  • Loading branch information
na2axl committed Jun 23, 2024
1 parent 8785005 commit 723fa75
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: "Ubuntu Latest GCC"
key: gcc
os: ubuntu-latest
os: ubuntu-24.04
sdk_dir: linux
artifact: "amplitude_audio_sdk_linux_gcc_x64.7z"
cc: "gcc"
Expand Down Expand Up @@ -110,7 +110,8 @@ jobs:
if: startsWith(matrix.config.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake
sudo apt-get install cpanminus ninja-build cmake
sudo cpanm open
ninja --version
cmake --version
gcc --version
Expand Down Expand Up @@ -146,6 +147,7 @@ jobs:
${{ matrix.build_type }}-${{ matrix.config.artifact }}-
- name: Configure
id: configure
shell: bash
working-directory: ${{ inputs.project-path }}
run: |
Expand All @@ -160,6 +162,13 @@ jobs:
-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE \
-DBUILD_SAMPLES:BOOL=TRUE
- name: Inspect vcpkg errors
if: failure()
run: |
cat ${{ github.workspace }}/vcpkg/buildtrees/libxcrypt/autoconf-x64-linux-out.log
cat ${{ github.workspace }}/vcpkg/buildtrees/libxcrypt/autoconf-x64-linux-err.log
cat ${{ github.workspace }}/build/vcpkg_installed/vcpkg/issue_body.md
- name: Build
shell: bash
working-directory: ${{ inputs.project-path }}/build
Expand Down

0 comments on commit 723fa75

Please sign in to comment.