MISC: macbuild.sh: need libtool for CI on macos-latest #62
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" | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test macOS Build | |
run: misc/macbuild.sh | |
macos-13: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test macOS Build | |
run: misc/macbuild.sh | |
windows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test Build | |
run: windows/build.sh |