DOC: Makefile.mk: work around broken heading anchors in pandoc-1.3.9 #11
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 | |
# Linting: xclip -sel c <.github/workflows/testing.yml # https://rhysd.github.io/actionlint/ | |
on: | |
push: | |
branches: [ 'trunk', 'next', 'wip/**' ] | |
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ] | |
pull_request: | |
branches: ['trunk', 'next'] | |
jobs: | |
Focal-Assets: | |
runs-on: ubuntu-latest | |
env: | |
CITAG: focal | |
CICACHE: /tmp/cicache | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
key: cifocal-${{hashFiles ('misc/Dockerfile.focal')}} | |
path: /tmp/cicache | |
- name: 'Prepare Docker Image' | |
run: | | |
echo -e ' prefix=/\n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | |
misc/cirun -u 1000 misc/version.sh | |
- name: 'Build Dist Assets' | |
run: | | |
misc/cirun -u 1000 make mkassets | |
- uses: actions/[email protected] | |
with: { name: assets, path: assets/ } | |
- uses: actions/[email protected] | |
with: { name: dist-tarball, path: assets/*.tar* } | |
- name: 'Upload API Docs' # http://tim-janik.github.io/docs/anklang | |
if: github.ref == 'refs/heads/trunk' | |
run: | | |
misc/cirun -u 1000 make -j`nproc` all | |
(umask 0077 && cat <<< "${{ secrets.SSH_ID_GHDOCS4ANKLANG_ECDSA }}" > .git/.ssh_id_ghdocs4anklang) | |
misc/cirun -u 1000 doc/poxy.sh -b -u | |
Arch-Replay: | |
runs-on: ubuntu-latest | |
env: | |
CITAG: arch | |
CICACHE: /tmp/cicache | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
key: ciarch-${{hashFiles ('misc/Dockerfile.arch')}} | |
path: /tmp/cicache | |
- name: 'Prepare Docker Image' | |
run: | | |
# Test the most recent g++ via Arch | |
echo -e ' prefix=/\n' > config-defaults.mk | |
misc/cirun -u 1000 misc/version.sh | |
- name: 'Run X11 GUI Tests' | |
run: | | |
misc/cirun -u 1000 make GCC_COLORS="" -j`nproc` all | |
misc/cirun -u 1000 make -j`nproc` check | |
misc/cirun -u 1000 make x11test-v | |
# Artifact upload from x11test | |
- uses: actions/[email protected] | |
if: always() | |
with: | |
name: x11test | |
path: out/x11test/ | |
Focal-Clang-Tidy: | |
if: ${{ ! contains(github.ref, 'refs/tags/') }} | |
runs-on: ubuntu-latest | |
env: | |
CITAG: focal | |
CICACHE: /tmp/cicache | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
with: | |
key: cifocal-${{hashFiles ('misc/Dockerfile.focal')}} | |
path: /tmp/cicache | |
- name: 'Prepare Docker Image' | |
run: | | |
echo -e ' prefix=/\n CC=clang \n CXX=clang++ \n CLANG_TIDY=clang-tidy ' > config-defaults.mk | |
misc/cirun -u 1000 misc/version.sh | |
- name: 'Make all check' | |
run: | | |
misc/cirun -u 1000 make -j`nproc` all | |
misc/cirun -u 1000 make -j`nproc` check | |
- name: 'Make clang-tidy' | |
run: | | |
misc/cirun -u 1000 make -j`nproc` clang-tidy | |
# Artifact upload from clang-tidy | |
- uses: actions/[email protected] | |
with: { name: clang-tidy, path: out/clang-tidy/ } | |
Release-Upload: | |
needs: [Focal-Assets, Arch-Replay] | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
env: | |
GH_TOKEN: ${{ github.token }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Release Assets | |
uses: actions/download-artifact@v3 | |
- run: ls -lR assets/ | |
- name: Create Release with Assets | |
run: misc/publish.sh | |
Ping-IRC: | |
if: always() | |
needs: [Focal-Assets, Arch-Replay, Focal-Clang-Tidy, Release-Upload] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Jobs | |
run: | | |
echo '${{ needs.Focal-Assets.result }}' '${{ needs.Arch-Replay.result }}' '${{ needs.Focal-Clang-Tidy.result }}' '${{ needs.Release-Upload.result }}' | |
[[ ${{ needs.Focal-Assets.result }} =~ success|skipped ]] | |
[[ ${{ needs.Arch-Replay.result }} =~ success|skipped ]] | |
[[ ${{ needs.Focal-Clang-Tidy.result }} =~ success|skipped ]] | |
[[ ${{ needs.Release-Upload.result }} =~ success|skipped ]] | |
- name: Ping IRC | |
if: always() | |
run: | | |
R='${{ github.repository }}' && R=${R#*/} | |
B='${{ github.ref }}' && B=${B#refs/heads/} | |
S='${{ job.status }}' && URL='${{ github.event.head_commit.url }}' | |
U='${{ github.actor }}' && B="$(git branch --show-current)" | |
MSG=$(git log -1 --format='%s') | |
.github/workflows/ircbot.py -q -j "#Anklang" -R "$R" -U "$U" -D "$B" -S "$S" "$MSG" "$URL" |