programs: Fix a format warning. #58
Workflow file for this run
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: Test Builds on Linux | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build-set-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
id: checkout-code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup problem matcher | |
uses: Joshua-Ashton/gcc-problem-matcher@v3 | |
- name: Build MinGW x86 | |
id: build-mingw-x86 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
meson setup -Denable_tests=True -Denable_extras=True --cross-file=build-win32.txt --buildtype release build-mingw-x86 | |
ninja -C build-mingw-x86 | |
- name: Build MinGW x64 | |
id: build-mingw-x64 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
meson setup -Denable_tests=True -Denable_extras=True --cross-file=build-win64.txt --buildtype release build-mingw-x64 | |
ninja -C build-mingw-x64 | |
- name: Build Native GCC x86 | |
id: build-native-gcc-x86 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
export CC="gcc -m32" | |
export CXX="g++ -m32" | |
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:/usr/lib/pkgconfig" | |
meson setup -Denable_tests=True -Denable_extras=True -Dc_args='-Wformat=2 -Wno-format-truncation' --buildtype release build-native-gcc-x86 | |
ninja -C build-native-gcc-x86 | |
- name: Build Native GCC x64 | |
id: build-native-gcc-x64 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
export CC="gcc" | |
export CXX="g++" | |
meson setup -Denable_tests=True -Denable_extras=True -Dc_args='-Wformat=2 -Wno-format-truncation' --buildtype release build-native-gcc-x64 | |
ninja -C build-native-gcc-x64 | |
- name: Build Native Clang x86 | |
id: build-native-clang-x86 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
export CC="clang -m32" | |
export CXX="clang++ -m32" | |
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig:/usr/lib/pkgconfig" | |
meson setup -Denable_tests=True -Denable_extras=True --buildtype release build-native-clang-x86 | |
ninja -C build-native-clang-x86 | |
- name: Build Native Clang x64 | |
id: build-native-clang-x64 | |
uses: Joshua-Ashton/arch-mingw-github-action@v8 | |
with: | |
command: | | |
export CC="clang" | |
export CXX="clang++" | |
meson setup -Denable_tests=True -Denable_extras=True --buildtype release build-native-clang-x64 | |
ninja -C build-native-clang-x64 |