blinky1/.gitlab-ci.yml

40 lines
782 B
YAML
Raw Normal View History

2019-02-12 14:49:32 +01:00
stages:
- hello
2019-02-12 14:57:21 +01:00
- build
2019-02-12 16:21:17 +01:00
tags:
- hottis
- linux
- debian
2019-02-12 14:38:02 +01:00
job1:
2019-02-12 14:49:32 +01:00
stage: hello
2019-02-12 14:45:29 +01:00
script:
- echo "Hallo"
- echo "Welt"
2019-02-12 16:21:17 +01:00
- echo "$SSH_PRIVATE_KEY"
2019-02-12 14:38:02 +01:00
2019-02-12 14:49:32 +01:00
job2:
stage: hello
script:
- echo "Hello"
- echo "World"
2019-02-12 14:57:21 +01:00
job3:
stage: build
2019-02-12 15:48:31 +01:00
only:
refs:
2019-02-12 15:49:32 +01:00
- master
2019-02-12 15:48:31 +01:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2019-02-12 14:57:21 +01:00
before_script:
- apt update
- apt install -y msp430-libc
- apt install -y binutils-msp430
- apt install -y gcc-msp430
script:
- make clean
- make all