arm64-win32 review: fix problems and pass tests #314
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 and test | |
| on: | |
| push: | |
| branches: [ mob ] | |
| jobs: | |
| test-x86_64-linux: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: make & test tcc (x86_64-linux) | |
| run: ./configure && make && make test -k | |
| test-x86_64-osx: | |
| runs-on: macos-15-intel | |
| timeout-minutes: 2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: make & test tcc (x86_64-osx) | |
| run: ./configure && make && make test -k | |
| test-aarch64-osx: | |
| runs-on: macos-15 | |
| timeout-minutes: 2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: make & test tcc (aarch64-osx) | |
| run: ./configure && make && make test -k | |
| test-x86_64-win32: | |
| runs-on: windows-2025 | |
| timeout-minutes: 6 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: test (x86_64-win32) | |
| shell: cmd | |
| run: | | |
| echo ::group:: run build-tcc.bat | |
| cd win32 | |
| call "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=amd64 | |
| call build-tcc.bat -c cl -t x86_64 | |
| @echo off | |
| echo ::endgroup:: | |
| cd ..\tests | |
| call test-win32.bat all -k | |
| test-i386-win32: | |
| runs-on: windows-2025 | |
| timeout-minutes: 6 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: test (i386-win32) | |
| shell: cmd | |
| run: | | |
| echo ::group:: run build-tcc.bat | |
| cd win32 | |
| call "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=x86 | |
| call build-tcc.bat -c cl -t i386 | |
| @echo off | |
| echo ::endgroup:: | |
| cd ..\tests | |
| call test-win32.bat -p c:\mingw32\bin all -k | |
| test-arm64-win32: | |
| runs-on: windows-11-arm | |
| timeout-minutes: 6 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: test (arm64-win32) | |
| shell: cmd | |
| run: | | |
| echo ::group:: run build-tcc.bat | |
| cd win32 | |
| call "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=arm64 | |
| call build-tcc.bat -c cl -t arm64 | |
| @echo off | |
| echo ::endgroup:: | |
| cd ..\tests | |
| call test-win32.bat -c clang all -k | |
| test-armv7-linux: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 8 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: uraimo/run-on-arch-action@v3 | |
| name: make & test tcc (armv7-linux) | |
| with: | |
| arch: armv7 | |
| distro: ubuntu22.04 | |
| githubToken: ${{ github.token }} | |
| install: | | |
| apt-get update -q -y | |
| apt-get install -q -y gcc make | |
| run: | | |
| echo "::endgroup::" # flatten 'run container' | |
| ./configure && make && make test -k | |
| test-aarch64-linux: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 8 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: uraimo/run-on-arch-action@v3 | |
| name: make & test tcc (aarch64-linux) | |
| with: | |
| arch: aarch64 | |
| distro: ubuntu24.04 | |
| githubToken: ${{ github.token }} | |
| install: | | |
| apt-get update -q -y | |
| apt-get install -q -y gcc make | |
| run: | | |
| echo "::endgroup::" # flatten 'run container' | |
| ./configure && make && make test -k | |
| test-riscv64-linux: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 8 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: uraimo/run-on-arch-action@v3 | |
| name: make & test tcc (riscv64-linux) | |
| with: | |
| arch: riscv64 | |
| distro: ubuntu22.04 | |
| githubToken: ${{ github.token }} | |
| install: | | |
| apt-get update -q -y | |
| apt-get install -q -y gcc make | |
| run: | | |
| echo "::endgroup::" # flatten 'run container' | |
| ./configure && make && make test -k |