Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
CBenoit committed Oct 8, 2024
1 parent 3396c7f commit b4bed06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,15 @@ jobs:
- name: Update runner
if: ${{ matrix.os == 'linux' }}
run: sudo apt update
run: sudo apt-get update

# We need a newer version of GCC because aws-lc-rs rejects versions affected
# by this bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95189
# These lines can be safely removed once we switch to ubuntu-22.04 runner.
- name: Install GCC 10.x
if: ${{ matrix.os == 'linux' }}
run: |
sudo apt install gcc-10
sudo apt-get install gcc-10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60
- name: Build sspi (${{matrix.os}}-${{matrix.arch}}) (${{matrix.build}})
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
}
if ($RustTarget -eq 'aarch64-unknown-linux-gnu') {
sudo apt install gcc-aarch64-linux-gnu
sudo apt-get install gcc-aarch64-linux-gnu
$Env:RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc"
}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Prepare Linux runner
if: matrix.os == 'linux'
run: sudo apt install libpcsclite
run: sudo apt-get install libpcsclite-dev

# Compiling the ffi module is enough to lint the whole sspi workspace
- name: Check clippy
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Prepare Linux runner
if: matrix.os == 'linux'
run: sudo apt install libpcsclite
run: sudo apt-get install libpcsclite-dev

- name: Test
env:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- uses: actions/checkout@v4

- name: Prepare runner
run: sudo apt install wabt
run: sudo apt-get install wabt

- name: Check
shell: pwsh
Expand Down

0 comments on commit b4bed06

Please sign in to comment.