mirror of
https://github.com/Ralim/IronOS.git
synced 2025-07-23 04:13:01 +02:00
14 lines
392 B
Bash
14 lines
392 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
set -u
|
|
|
|
mkdir -p /build/ci/artefacts
|
|
|
|
# Build STM code
|
|
cd /build/source/workspace/TS100/
|
|
bash ./build.sh || exit 1
|
|
echo "All Firmware built"
|
|
# Copy out all the final resulting files we would like to store for the next op
|
|
cp -r /build/source/workspace/TS100/Hexfile/*.hex /build/ci/artefacts/
|
|
cp -r /build/source/workspace/TS100/Hexfile/*.bin /build/ci/artefacts/
|