Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit 6322ba8

Browse files
authored
Merge pull request #11 from Cosmian/ci/fix-apt-errors
fix ci errors
2 parents 6522853 + ce177ec commit 6322ba8

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/build_all.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,24 @@ jobs:
3131
archive-name: ubuntu_20_04
3232
target: x86_64-unknown-linux-gnu
3333
prerequisites: |
34-
sudo apt install librust-atk-sys-dev librust-gdk-sys-dev pkg-config
34+
sudo apt-get update
35+
sudo apt-get install -qq librust-atk-sys-dev librust-gdk-sys-dev pkg-config
3536
docker_compose: true
3637

3738
- distribution: ubuntu-22.04
3839
archive-name: ubuntu_22_04
3940
target: x86_64-unknown-linux-gnu
4041
prerequisites: |
41-
sudo apt install librust-atk-sys-dev librust-gdk-sys-dev pkg-config
42+
sudo apt-get update
43+
sudo apt-get install -qq librust-atk-sys-dev librust-gdk-sys-dev pkg-config
4244
docker_compose: true
4345

4446
- distribution: ubuntu-24.04
4547
archive-name: ubuntu_24_04
4648
target: x86_64-unknown-linux-gnu
4749
prerequisites: |
48-
sudo apt update
49-
sudo apt install libgtk-3-dev libglib2.0-dev pkg-config
50+
sudo apt-get update
51+
sudo apt-get install -qq libgtk-3-dev libglib2.0-dev pkg-config
5052
docker_compose: true
5153

5254
- distribution: macos-13

.github/workflows/clippy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333

3434
- name: Install Klask prerequisites
3535
run: |
36-
sudo apt install librust-atk-sys-dev librust-gdk-sys-dev libssl-dev pkg-config
36+
sudo apt-get update
37+
sudo apt-get install -qq librust-atk-sys-dev librust-gdk-sys-dev libssl-dev pkg-config
3738
3839
- uses: dtolnay/rust-toolchain@master
3940
with:

0 commit comments

Comments
 (0)