2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-12 22:17:47 +00:00
Files
OpenAssetTools/.gitlab-ci.yml
2021-03-04 13:16:45 +01:00

35 lines
759 B
YAML

stages:
- build
- test
build-gcc:
image: gcc:latest
stage: build
cache:
paths:
- build/
tags:
- build
- docker
- linux
script:
- "./generate.sh"
- "make -C build -j$(nproc) config=release_x86 all"
test-gcc:
image: gcc:latest
stage: test
cache:
paths:
- build/
tags:
- build
- docker
- linux
script:
- "./generate.sh"
- "make -C build -j$(nproc) config=release_x86 ObjCommonTests ZoneCodeGeneratorLibTests ZoneCommonTests"
- "./build/lib/Release_x86/tests/ObjCommonTests"
- "./build/lib/Release_x86/tests/ZoneCodeGeneratorLibTests"
- "./build/lib/Release_x86/tests/ZoneCommonTests"