mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-12-12 22:17:47 +00:00
35 lines
759 B
YAML
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"
|