1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: run the full V test suite on arm64 (#12865)

This commit is contained in:
spaceface
2021-12-16 16:44:21 +01:00
committed by GitHub
parent 6ff953d936
commit 8a34fb7857
3 changed files with 71 additions and 44 deletions

View File

@@ -114,49 +114,6 @@ jobs:
- name: Build cmd/tools/fast
run: cd cmd/tools/fast && ../../../v fast.v && ./fast
ubuntu-tcc-arm64:
needs: no-scheduling
runs-on: ubuntu-20.04
timeout-minutes: 121
steps:
- uses: actions/checkout@v2
- uses: uraimo/run-on-arch-action@v2.0.5
name: Run commands
id: runcmd
with:
arch: aarch64
distro: ubuntu20.04
env: |
VFLAGS: -cc tcc -no-retry-compilation -g
run: |
# - name: Install dependencies
apt-get update -y
apt-get install --quiet -y build-essential git
## -name: Build v
make
./v -d debug_malloc -d debug_realloc -o v cmd/v
./v -cg -cstrict -o v cmd/v
# Test v -realloc arena allocation
./v -o vrealloc -prealloc cmd/v && ./vrealloc -o v3 cmd/v && ./v3 -o v4 cmd/v
#Test v->c
thirdparty/tcc/tcc.exe -version
./v -cg -o v cmd/v # Make sure vtcc can build itself twice
# - name: v self compilation
./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
# - name: v self compilation with -skip-unused
./v -skip-unused -o v2 cmd/v && ./v2 -skip-unused -o v3 cmd/v && ./v3 -skip-unused -o v4 cmd/v
# - name: v doctor
./v doctor
# TODO: run the full V test suite
# qemu is very slow, and it also sometimes produces failures that do not occur on real CPUs
ubuntu-tcc-boehm-gc:
needs: no-scheduling
runs-on: ubuntu-20.04