fpc/.gitlab-ci.yml
FPK 31af8ea1a0 * new image
(cherry picked from commit 91337a3675)
2022-01-08 23:42:45 +01:00

37 lines
1.0 KiB
YAML

# This .gitlab.ci.yml is based on:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
# the FPC specific parts are partly from:
# https://gitlab.com/alb42/testconversion2/-/blob/main/.gitlab-ci.yml
image: registry.gitlab.com/freepascal.org/fpc/source/debian-buster-x86_64
stages:
- compilercycle
- buildandtest
compiler-fullcycle-job:
stage: compilercycle
script:
- cd compiler
- make fullcycle
build-and-test-job:
stage: buildandtest
script:
- make -j 4 all OS_TARGET=linux CPU_TARGET=x86_64 FPMAKEOPT="-T 4"
- FPC_SRC=$(pwd)
- FPC_COMPILER=$FPC_SRC/compiler/ppcx64
- cd tests
- make clean TEST_FPC=$FPC_COMPILER TEST_DELTEMP=1 -j 4
- make full TEST_FPC=$FPC_COMPILER TEST_DELTEMP=1 -j 4
- cd utils
- make fpts2junit
- cd $FPC_SRC
- tests/utils/fpts2junit $FPC_SRC/tests/output/x86_64-linux/ testresult.xml
artifacts:
when: always
paths:
- testresult.xml
reports:
junit: testresult.xml