blinky1/.gitlab-ci.yml

34 lines
682 B
YAML

stages:
- hello
- build
job1:
stage: hello
script:
- echo "Hallo"
- echo "Welt"
job2:
stage: hello
script:
- echo "Hello"
- echo "World"
job3:
stage: build
only:
refs:
-master
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- apt update
- apt install -y msp430-libc
- apt install -y binutils-msp430
- apt install -y gcc-msp430
script:
- make clean
- make all