-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
58 lines (51 loc) · 1.1 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
variables:
GIT_SUBMODULE_STRATEGY: recursive
default:
image: $DOCKER_REGISTRY/$CI_PROJECT_PATH
tags: [shared]
before_script:
- cp -r $(pwd)/ /root/quicklisp/local-projects/
.test-template: &test
stage: test
script:
- LISP=$LISP make real-check
except:
- schedules
test-sbcl:
variables:
LISP: 'sbcl'
<<: *test
test-ccl:
variables:
LISP: 'ccl'
<<: *test
readme:
stage: test
script:
- make dependencies check-readme
except:
- schedules
dependent-gt:
stage: deploy
only: [master]
except: [schedules]
trigger: synthesis/gt
scheduled-build:
stage: build
inherit:
default: false
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
tags: [shared]
before_script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
script:
- >-
/kaniko/executor
--context=$CI_PROJECT_DIR/
--dockerfile=$CI_PROJECT_DIR/Dockerfile
--destination=$CI_REGISTRY_IMAGE
only:
- schedules