Skip to content

Commit

Permalink
[brief] Fixes the builds.
Browse files Browse the repository at this point in the history
[detailed]
- Moves the linux builds to use 24.04 and updates all the compilers to
  their latest versions.
- Fixes a typo in the MSVC script.
  • Loading branch information
marovira committed Jun 26, 2024
1 parent 8b4cc5a commit 5e7aaab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:
jobs:
build:
name: ${{ matrix.config.preset }}-${{ matrix.build }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
config:
- {cxx: "clang++-15", cc: "clang-15", preset: "clang"}
- {cxx: "g++-13", cc: "gcc-13", preset: "gcc"}
- {cxx: "clang++-18", cc: "clang-18", preset: "clang"}
- {cxx: "g++-14", cc: "gcc-14", preset: "gcc"}
build: ["Debug", "Release"]
steps:
- uses: actions/checkout@v4
Expand All @@ -29,8 +29,8 @@ jobs:
if: steps.cache-deps.outputs.cache-hit != 'true'
shell: bash
env:
CC: gcc-13
CXX: g++-13
CC: gcc-14
CXX: g++-14
run: |
chmod +x .github/workflows/scripts/install_deps.sh
./.github/workflows/scripts/install_deps.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/install_deps.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
c="C:/deps"
$c="C:/deps"
if(-not (Test-Path $c))
{
python .github/workflows/scripts/generate_versions.py
Expand Down

0 comments on commit 5e7aaab

Please sign in to comment.