modified: .github/workflows/build.yml
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 50s

This commit is contained in:
SikkieNL 2024-12-21 23:08:46 +01:00
parent 2842a1208f
commit 1d73083ceb

View File

@ -73,12 +73,25 @@ jobs:
steps: steps:
- name: Add architecture - name: Add architecture
if: ${{ matrix.arch }}
run: |
sudo dpkg --add-architecture "${{ matrix.arch }}"
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update -qq
sudo apt-get remove -qq libmono* moby* mono* nginx* php* libgdiplus libpcre2-posix3 libzip4
- name: Install packages - name: Install packages
run: |
sudo apt-get update
sudo apt-get install make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config python3 patch bison
sudo apt-get install ${{ matrix.packages }}
- name: Post Install - name: Post Install
if: ${{ matrix.postinstall }}
run: ${{ matrix.postinstall }}
- name: Checkout - name: Checkout
uses: actions/checkout@v4.1.7
- name: SDK cache - name: SDK cache