MISC: staticbuild.sh: add libgl-dev for initial autogen.sh run #249
This file contains 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
# This Source Code Form is licensed MPL-2.0: http://mozilla.org/MPL/2.0 | |
# https://rhysd.github.io/actionlint/ | |
name: Testing | |
on: [push] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Build | |
run: misc/dbuild.sh | |
- name: Ping IRC | |
if: always() | |
run: | | |
S="${{ job.status }}" && URL="${{ github.event.head_commit.url }}" | |
N="$(git log -1 --format="%cL")" && B="$(git branch --show-current)" | |
MSG=$(git log -1 --format="%s") | |
.github/workflows/ircbot.py -q -j "#Anklang" -n AnklangGH -U "$N" -D "$B" -S "$S" "$MSG" "$URL" | |
linux-static: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Build | |
run: misc/staticbuild.sh | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Build | |
shell: bash | |
run: misc/macbuild.sh | |
windows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Build | |
run: misc/winbuild.sh |