mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:07:50 +02:00
17 lines
389 B
YAML
17 lines
389 B
YAML
image: quay.io/loesje/gitlab-ci-fpc-buildimage
|
|
|
|
stages:
|
|
- testbuild
|
|
|
|
build:
|
|
stage: testbuild
|
|
script:
|
|
- make all
|
|
- cd tests
|
|
- make full TEST_FPC=$(pwd)/../compiler/ppcx64
|
|
- make digest TEST_FPC=$(pwd)/../compiler/ppcx64 > digest.txt
|
|
artifacts:
|
|
name: "TestResults-$CI_COMMIT_REF_NAME"
|
|
paths:
|
|
- tests/digest.txt
|
|
- tests/output/x86_64-linux/faillist |