Skip to content

Commit

Permalink
Update linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GloryOfNight authored Jun 10, 2024
1 parent 02725a8 commit 526bd38
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,21 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- name: Install tools
run: |
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y cmake
sudo apt-get install -y ninja-build
sudo apt-get install clang-15
sudo apt-get install -y clang
- name: Configure and build
run: |
cmake -S . -B build -DCMAKE_C_COMPILER=clang-15 -DCMAKE_CXX_COMPILER=clang++-15
cmake -S . -B build -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
cmake --build build
- name: Upload binary to release (optional)
Expand Down

0 comments on commit 526bd38

Please sign in to comment.