Skip to content

Commit

Permalink
build: Fix linux packaging builds
Browse files Browse the repository at this point in the history
Failure being related to a broken Microsoft repository we don't need,
we just needed to implement work-around from: actions/runner-images#9733 (comment)
  • Loading branch information
g-bougard committed Apr 24, 2024
1 parent f2456cf commit ed0c5ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/glpi-agent-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install build dependencies packages
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt update
sudo apt -y install dpkg-dev debhelper libmodule-install-perl \
libclone-perl libdigest-sha-perl libfile-copy-recursive-perl \
Expand Down Expand Up @@ -581,6 +582,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install build dependencies packages
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt update
sudo apt -y install rpm devscripts \
libfile-which-perl libuniversal-require-perl libmodule-install-perl
Expand Down Expand Up @@ -702,6 +704,7 @@ jobs:
VERSION: ${{ needs.setup-release.outputs.version }}
- name: Quick tests
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
echo ====
echo Install libfuse2 as required by AppImage
sudo apt update
Expand Down Expand Up @@ -750,6 +753,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install build dependencies packages
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt update
sudo apt -y install libmodule-install-perl libuniversal-require-perl \
libwww-perl libdigest-sha-perl
Expand Down

0 comments on commit ed0c5ad

Please sign in to comment.