Skip to content

Commit

Permalink
Fix CI apt-get install (AFLplusplus#2618)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmalmain authored Oct 16, 2024
1 parent 31e31b6 commit 23e966c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- name: Install mimetype
if: runner.os == 'Linux'
run: sudo apt-get install -y libfile-mimeinfo-perl
run: sudo apt-get update && sudo apt-get install -y libfile-mimeinfo-perl
- name: install mdbook
uses: baptiste0928/cargo-install@v3
with:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
needs: ubuntu
steps:
- name: Install curl
run: sudo apt-get install clang
run: sudo apt-get update && sudo apt-get install clang
- uses: dtolnay/rust-toolchain@stable
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
Expand All @@ -173,7 +173,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Install deps
run: sudo apt-get install -y lsb-release wget software-properties-common gnupg ninja-build python3-dev python3-pip python3-venv libz3-dev
run: sudo apt-get update && sudo apt-get install -y lsb-release wget software-properties-common gnupg ninja-build python3-dev python3-pip python3-venv libz3-dev
- name: Install maturin
run: cargo install --locked maturin
- uses: actions/checkout@v4
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install linkspector
shell: bash
run: sudo apt-get install -y npm && npm install -g @umbrelladocs/linkspector
run: sudo apt-get update && sudo apt-get install -y npm && npm install -g @umbrelladocs/linkspector
- name: Run linkspector
shell: bash
run: ./scripts/check_md_links.sh
Expand Down Expand Up @@ -496,7 +496,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Install curl
run: sudo apt-get install clang
run: sudo apt-get update && sudo apt-get install clang
- uses: dtolnay/rust-toolchain@stable
- uses: nttld/setup-ndk@v1
with:
Expand All @@ -518,4 +518,4 @@ jobs:
#- name: Try if clang works
# run: clang -v
#- name: Windows Test
# run: C:\Rust\.cargo\bin\cargo.exe test --verbose
# run: C:\Rust\.cargo\bin\cargo.exe test --verbose

0 comments on commit 23e966c

Please sign in to comment.