diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-11-25 15:57:47 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-11-25 15:59:48 +0100 |
commit | e5436cc50e489487a150c5a6c8bff085ba4c63c7 (patch) | |
tree | accf97218e03b5f63b8df072789fdc90bb26f515 /.gitlab-ci.yml | |
parent | 35db4a64783b3399de713c2b87b5ed753e7cae15 (diff) |
msp430fr5994lp: Use TI msp430-gcc 5.1.2.0
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e0e91a..d389dd8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,12 +31,11 @@ build_msp430fr5969lp: build_msp430fr5994lp: stage: build before_script: - - export PATH="/opt/msp430/ti/msp430-gcc-full-linux-5.0.0.36/bin:$PATH" + - export PATH="/opt/msp430/ti/msp430-gcc-full-linux-5.1.2.0/bin:$PATH" script: - - dpkg --add-architecture i386 - apt-get update -qy - - apt-get install -y build-essential curl libc6:i386 libgcc1:i386 libstdc++6:i386 - - curl -s https://ess.cs.uos.de/static/.gitlab-ci/msp430-gcc-full-linux-5.0.0.36.tar.xz | tar -C /opt -xJf - + - apt-get install -y build-essential curl + - curl -s https://ess.cs.uos.de/static/.gitlab-ci/msp430-gcc-full-linux-5.1.2.0.tar.xz | tar -C /opt -xJf - - mkdir -p build - make -B arch=msp430fr5994lp app=donothing - make -B arch=msp430fr5994lp app=ledblink loop=1 timer_s=1 |