GitHub actions #4
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: C/C++ CI | |
on: | |
push: | |
branches: | |
- master | |
- releases/* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ubuntu-x86-64: | |
name: Ubuntu cross build (x86_64) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: >- | |
sudo apt-get install -y --no-install-recommends autoconf automake | |
libtool make mingw-w64 mingw-w64-tools gcc-mingw-w64-x86-64 | |
binutils-mingw-w64-x86-64 wine64 wine-binfmt | |
- name: Config x86_64-w64-mingw32-gcc | |
run: sudo update-alternatives --config x86_64-w64-mingw32-gcc | |
- name: Run tests | |
run: CONFIGURE_HOST=x86_64-w64-mingw32 ./ci/build.sh | |
msys2-ucrt64: | |
name: MSYS2 native build (x86_64) | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
- name: Install dependencies | |
run: >- | |
pacman -S --noconfirm autoconf automake libtool gettext make | |
mingw-w64-ucrt-x86_64-headers-git mingw-w64-ucrt-x86_64-crt-git | |
mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-binutils | |
- name: Run tests | |
run: CONFIGURE_HOST=x86_64-w64-mingw32 ./ci/build.sh | |
msys2-mingw32: | |
name: MSYS2 native build (i686) | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW32 | |
- name: Install dependencies | |
run: >- | |
pacman -S --noconfirm autoconf automake libtool gettext make | |
mingw-w64-i686-headers-git mingw-w64-i686-crt-git | |
mingw-w64-i686-gcc mingw-w64-i686-binutils | |
- name: Run tests | |
run: CONFIGURE_HOST=i686-w64-mingw32 ./ci/build.sh |