Build all #150
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
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' | |
jobs: | |
Ubuntu: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: ubuntu-latest | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
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: Sanity Checks | |
run: | | |
./tools/sanity_checks.py | |
Alpine: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: ubuntu-latest | |
container: | |
image: alpine | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
steps: | |
- name: Install packages | |
run: | | |
apk add cmake g++ gcc git linux-headers pkgconf py3-pip samurai sudo | |
python -m pip install git+https://github.com/mesonbuild/meson | |
git config --global --add safe.directory '*' | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create non privileged user | |
run: | | |
adduser wrapdb --disabled-password | |
echo 'wrapdb ALL=(ALL:ALL) NOPASSWD: ALL' >/etc/sudoers.d/wrapdb | |
chown -R wrapdb:wrapdb . | |
- name: Sanity Checks | |
run: | | |
su -c - wrapdb ./tools/sanity_checks.py | |
VisualStudio: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
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: Sanity Checks | |
run: | | |
python tools/sanity_checks.py | |
VisualStudio-clang-cl: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
env: | |
CC: clang-cl | |
CXX: clang-cl | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
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: Sanity Checks | |
run: | | |
python tools/sanity_checks.py | |
MSYS2: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: windows-latest | |
name: MSYS2-${{matrix.platform}} | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
strategy: | |
matrix: | |
platform: ['UCRT64', 'CLANG32', 'CLANG64'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.platform}} | |
install: >- | |
dos2unix | |
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: Sanity Checks | |
shell: msys2 {0} | |
run: | | |
python tools/sanity_checks.py | |
MacOS: | |
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb' | |
runs-on: macos-latest | |
env: | |
TEST_BUILD_ALL: 1 | |
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: brew update | |
# github actions overwrites brew's python. Force it to reassert itself, by running in a separate step. | |
- name: unbreak python in github actions | |
run: | | |
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete | |
sudo rm -rf /Library/Frameworks/Python.framework/ | |
brew install --force python3 && brew unlink python3 && brew unlink python3 && brew link --overwrite python3 | |
- name: Install packages | |
run: | | |
brew install ninja | |
python3 -m pip install git+https://github.com/mesonbuild/meson | |
- name: Sanity Checks | |
run: | | |
./tools/sanity_checks.py |