Skip to content

Commit 0ca7071

Browse files
committed
Fix CI
1 parent 0be3954 commit 0ca7071

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/failures.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ jobs:
4848

4949
- name: Install libgccjit12
5050
if: matrix.libgccjit_version.gcc == 'libgccjit12.so'
51-
run: sudo apt-get install libgccjit-12-dev
51+
run: |
52+
sudo apt-get update
53+
sudo apt-get install libgccjit-12-dev
5254
5355
- name: Setup path to libgccjit
5456
if: matrix.libgccjit_version.gcc == 'libgccjit12.so'

.github/workflows/gcc12.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646

4747
- name: Install packages
4848
# `llvm-14-tools` is needed to install the `FileCheck` binary which is used for asm tests.
49-
run: sudo apt-get install ninja-build ripgrep llvm-14-tools libgccjit-12-dev
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install ninja-build ripgrep llvm-14-tools libgccjit-12-dev
5052
5153
- name: Setup path to libgccjit
5254
run: echo 'gcc-path = "/usr/lib/gcc/x86_64-linux-gnu/12"' > config.toml

0 commit comments

Comments
 (0)