Build all #252
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
name: Build all | |
on: | |
workflow_dispatch: | |
inputs: | |
fatal_warnings: | |
description: 'Build with --fatal-meson-warning (yes/no)' | |
default: 'no' | |
required: false | |
schedule: | |
# Run every Sunday at midnight | |
- cron: '0 0 * * 0' | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
jobs: | |
sources: | |
name: Download sources | |
runs-on: ubuntu-latest | |
outputs: | |
cache-key: ${{ steps.cache-key.outputs.cache-key }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install packages | |
run: python3 -m pip install git+https://github.com/mesonbuild/meson | |
- name: Calculate cache key | |
id: cache-key | |
run: echo "cache-key=packagecache-$(tools/internalize_sources.py cache-key --all)" >> $GITHUB_OUTPUT | |
- name: Check for cache | |
id: lookup | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ steps.cache-key.outputs.cache-key }} | |
# don't restore from older cache keys; it would bloat the cache | |
# over time and we want to recheck hashes on every run | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
lookup-only: true | |
- name: Download sources | |
if: steps.lookup.outputs.cache-hit != 'true' | |
continue-on-error: true | |
run: tools/internalize_sources.py download --all | |
- name: Save sources | |
if: steps.lookup.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
key: ${{ steps.cache-key.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
Ubuntu: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: ${{ matrix.platform == 'aarch64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }} | |
needs: sources | |
strategy: | |
matrix: | |
platform: ['x86_64', 'aarch64'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install packages | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install build-essential python3-pip ninja-build | |
python3 -m pip install git+https://github.com/mesonbuild/meson | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
run: | | |
./tools/fake_tty.py ./tools/sanity_checks.py | |
Alpine: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: ${{ matrix.platform == 'aarch64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }} | |
needs: sources | |
strategy: | |
matrix: | |
platform: ['x86_64', 'aarch64'] | |
steps: | |
- uses: jirutka/setup-alpine@v1 | |
with: | |
# next two lines: https://github.com/jirutka/setup-alpine/pull/22 | |
arch: ${{ matrix.platform }} | |
apk-tools-url: ${{ matrix.platform == 'aarch64' && 'https://gitlab.alpinelinux.org/api/v4/projects/5/packages/generic/v2.14.7/aarch64/apk.static#!sha256!27a975638ddc95a411c9f17c63383e335da9edf6bb7de2281d950c291a11f878' || 'https://gitlab.alpinelinux.org/api/v4/projects/5/packages/generic/v2.14.7/x86_64/apk.static#!sha256!bdd044e0fd6cc388c5e571e1093efa5f35f7767cc5aa338b0a2576a429009a62' }} | |
packages: > | |
binutils clang libc-dev fortify-headers make patch cmake git linux-headers pkgconf py3-pip samurai sudo | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
run: | | |
# Work around PEP 668 nonsense… | |
sudo rm -vf /usr/lib*/python3.*/EXTERNALLY-MANAGED | |
python -m pip install --pre meson | |
./tools/fake_tty.py ./tools/sanity_checks.py | |
shell: alpine.sh {0} | |
VisualStudio: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
needs: sources | |
strategy: | |
matrix: | |
platform: ['x64', 'x86'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Install a 32-bit Python so building related stuff work. | |
- name: Setup x86 Python | |
if: matrix.platform == 'x86' | |
uses: actions/setup-python@v5 | |
with: | |
architecture: 'x86' | |
python-version: '3.12' | |
- name: Install packages | |
run: | | |
python -m pip install git+https://github.com/mesonbuild/meson | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{matrix.platform}} | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
run: | | |
python tools/sanity_checks.py | |
VisualStudio-clang-cl: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
needs: sources | |
env: | |
CC: clang-cl | |
CXX: clang-cl | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install packages | |
run: | | |
python -m pip install git+https://github.com/mesonbuild/meson | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
run: | | |
python tools/sanity_checks.py | |
MSYS2: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
needs: sources | |
strategy: | |
matrix: | |
platform: ['UCRT64', 'CLANG64'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.platform}} | |
install: >- | |
bison | |
dos2unix | |
flex | |
git | |
pacboy: >- | |
cc:p | |
cmake:p | |
ninja:p | |
pkgconf:p | |
python-certifi:p | |
python-pip:p | |
# Make sure Python is updated to >=3.11 (fix https://github.com/msys2/MINGW-packages/issues/17415). | |
update: true | |
- name: Install packages | |
shell: msys2 {0} | |
run: | | |
python -m pip install git+https://github.com/mesonbuild/meson | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
shell: msys2 {0} | |
run: | | |
python tools/sanity_checks.py | |
MacOS: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: ${{ matrix.platform == 'arm64' && 'macos-14' || 'macos-13' }} | |
needs: sources | |
strategy: | |
matrix: | |
platform: ['arm64', 'x86_64'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: brew update | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: | | |
brew install --quiet ninja | |
python3 -m pip install git+https://github.com/mesonbuild/meson | |
- name: Restore sources | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ needs.sources.outputs.cache-key }} | |
path: subprojects/packagecache | |
enableCrossOsArchive: true | |
fail-on-cache-miss: true | |
- name: Sanity Checks | |
run: | | |
./tools/sanity_checks.py |