Revert "Commit 7916f73fd4d815c8695267906269041cf288f547" #61
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jobs: | |
| ubuntu: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y build-essential \ | |
| ... | |
| freebsd: | |
| runs-on: freebsd-13 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pkg install -y glib2 \ | |
| pkg delete libsoup3 \ | |
| ... | |
| openbsd: | |
| runs-on: openbsd-current | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pkg_add gtk3 \ | |
| ... | |
| netbsd: | |
| runs-on: netbsd-9 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pkg_add luajit \ | |
| pkg-config \ | |
| ... | |
| debian: | |
| runs-on: debian-11 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y \ | |
| ... | |
| arch: | |
| runs-on: arch | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| pacman -S --noconfirm \ | |
| ... | |
| alpine: | |
| runs-on: alpine | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apk update | |
| apk add --no-cache \ | |
| ... | |
| void: | |
| runs-on: voidlinux | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| xbps-install -y \ | |
| ... | |
| gentoo: | |
| runs-on: gentoo | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| emerge --quiet-build \ | |
| ... |