Skip to content

Commit

Permalink
Update package list before installing
Browse files Browse the repository at this point in the history
Apt and apk need their package list updated sometimes. This makes sure that happens.
  • Loading branch information
sharkwouter authored Mar 8, 2024
1 parent 9645ce8 commit 5723c5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies Alpine
if: matrix.os[0] == 'alpine'
run: |
apk add build-base bash git autoconf automake python3 py3-pip cmake pkgconfig libarchive-dev openssl-dev gpgme-dev libtool
apk add --no-cache build-base bash git autoconf automake python3 py3-pip cmake pkgconfig libarchive-dev openssl-dev gpgme-dev libtool
- name: Install dependencies Fedora
if: matrix.os[0] == 'fedora'
Expand Down Expand Up @@ -47,6 +47,7 @@ jobs:
- name: Install on Ubuntu
if: matrix.os[0] == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get -y install libarchive-dev libcurl4 libcurl4-openssl-dev libssl-dev libarchive-dev libgpgme-dev
echo "MSYSTEM=x64" >> $GITHUB_ENV
Expand Down

0 comments on commit 5723c5e

Please sign in to comment.