-
Notifications
You must be signed in to change notification settings - Fork 19
/
.gitlab-ci.yml
36 lines (33 loc) · 1.15 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
include: 'https://raw.githubusercontent.com/Nitrokey/common-ci-jobs/master/common_jobs.yml'
stages:
- pull-github
- build
- deploy
variables:
#Repo for shared scripts (pull.sh release.sh, nightly_upload.sh):
GIT_STRATEGY: clone #This seems to have no effect also set in webinterface
GIT_DEPTH: 0 #This seems to have no effect also set in webinterface
GIT_SUBMODULE_STRATEGY: recursive #This seems to have no effect also set in webinterfac
SCRIPTS_REPO: git@git.nitrokey.com:nitrokey/gitlab-ci.git
REPO_USER: nitrokey
REPO_NAME: nitrokey-storage-firmware
MAIN_BRANCH: master
build:
image: nk-storage-firmware-build:latest
rules:
- if: '$CI_PIPELINE_SOURCE == "push"'
- if: '$CI_PIPELINE_SOURCE == "schedule"'
- if: '$CI_PIPELINE_SOURCE == "web"'
tags:
- lxc
stage: build
script:
- cd src && make build-docker-toolchain
- make docker-make
after_script:
- wget $icon_server/checkmark/$CI_COMMIT_REF_NAME/$CI_COMMIT_SHA/$CI_JOB_NAME/$CI_JOB_STATUS/${CI_JOB_URL#*/*/*/}
- mkdir -p artifacts
- cp ./src/*.hex ./src/*sha256sum artifacts
artifacts:
paths:
- artifacts