Skip to content

Commit

Permalink
fix pipeline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Jan 25, 2025
1 parent a5472b8 commit 1866c43
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
get-version:
name: Get version
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
outputs:
Expand All @@ -39,6 +39,10 @@ jobs:
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set clang-format version
run: |
sudo update-alternatives --set clang-format /usr/bin/clang-format-18
clang-format --version
- name: Run linters
uses: wearerequired/lint-action@v2
Expand Down Expand Up @@ -126,7 +130,9 @@ jobs:
vcpkgJsonGlob: '**/vcpkg.json'

- name: Install Dependencies Linux
run: sudo apt-get install nasm libx11-dev libxft-dev libxext-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev libibus-1.0-dev libxrandr-dev libltdl-dev
run: |
sudo apt-get update
sudo apt-get install nasm libx11-dev libxft-dev libxext-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev libibus-1.0-dev libxrandr-dev libltdl-dev
if: matrix.os_name == 'linux' || matrix.os_name == 'android'
- name: Install Dependencies Mac
run: brew install nasm
Expand Down

0 comments on commit 1866c43

Please sign in to comment.