Ignore device number mismatch on overlay filesystem (Linux only) #41
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: tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests_on_ubuntu_x86_64: | |
name: Tests on Ubuntu (x86_64 and i686) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install packages | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install -y gcc-multilib gcc-mingw-w64-x86-64 gcc-mingw-w64-i686 libgcc-s1:i386 libstdc++6:i386 wine32 wine64 wine-binfmt | |
sudo apt-get remove mono-runtime | |
echo WINEPATH=$(ls -d /usr/lib/gcc/*-mingw*/*-win32 | tr '\n' ';') >> $GITHUB_ENV | |
- name: build | |
run: | | |
cd tests && make cross | |
- name: x86_64 -> x86_64 | |
run: | | |
cd tests && ./test-prog-x86_64 x86_64 | |
- name: x86_64 -> i386 | |
run: | | |
cd tests && ./test-prog-x86_64 i386 | |
- name: i386 -> i386 | |
run: | | |
cd tests && ./test-prog-i386 i386 | |
- name: x86_64 -> x86_64 (cloned thread) | |
run: | | |
cd tests && ./test-prog-x86_64 x86_64 --cloned-thread | |
- name: mingw-x64 mingw-x64 | |
run: | | |
cd tests && ./test-prog-mingw-x64.exe mingw-x64 | |
- name: mingw-32 mingw-32 | |
run: | | |
cd tests && ./test-prog-mingw-32.exe mingw-32 | |
tests_on_mac: | |
name: Tests on MacOS (x86_64) | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: run tests | |
run: | | |
sudo make check | |
tests_on_windows: | |
name: Tests on Windows (x64 and x86) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: x64 | |
- name: x64 -> x64 tests on Windows | |
shell: cmd | |
run: | | |
nmake -nologo -f Makefile.win32 check | |
if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL% | |
copy tests\test-prog.exe tests\test-prog-x64.exe | |
nmake -nologo -f Makefile.win32 clean | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: x86 | |
- name: x86 -> x86 tests on Windows | |
shell: cmd | |
run: | | |
nmake -nologo -f Makefile.win32 check | |
- name: x64 -> x86 tests on Windows | |
shell: cmd | |
run: | | |
cd tests && .\test-prog-x64.exe | |
- name: mingw32-w64 (x86_64) | |
shell: bash | |
run: | | |
CC=x86_64-w64-mingw32-gcc make clean check | |
tests_on_alpine_x86_64: | |
name: Tests on Alpine (x86_64 only) | |
runs-on: ubuntu-latest | |
container: alpine | |
steps: | |
- name: Install packages | |
run: | | |
apk add gcc musl-dev git make | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: run tests | |
run: | | |
make check |