Skip to content

Commit

Permalink
[ci] add ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Sep 14, 2024
1 parent d3baf8c commit 6ff6b56
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install dependencies (Linux only)
if: ${{ runner.os == 'Linux' }}
- name: Install dependencies (Linux only, except 24.04)
if: ${{ runner.os == 'Linux' && matrix.os != 'ubuntu-24.04' }}
run: sudo apt-get update && sudo apt-get install -y ocl-icd-libopencl1 opencl-headers ocl-icd-opencl-dev liboctave-dev upx-ucl
- name: Install dependencies (Linux, 24.04 only)
if: ${{ matrix.os == 'ubuntu-24.04' }}
run: sudo apt-get update && sudo apt-get install -y ocl-icd-libopencl1 opencl-headers ocl-icd-opencl-dev octave-dev upx-ucl
- name: Install dependencies (MacOS only)
if: ${{ runner.os == 'macOS' }}
run: |
Expand Down

0 comments on commit 6ff6b56

Please sign in to comment.