From ff7828a24c850f2e0abacab663d3c89af210cd44 Mon Sep 17 00:00:00 2001
From: Stephen D <stephen@scd31.com>
Date: Thu, 14 Dec 2023 02:04:54 +0000
Subject: [PATCH] build flasher

---
 .gitlab-ci.yml | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index de472fb..deead84 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,9 +3,12 @@ image: "rust:latest"
 stages:
   - lint
   - build
+  - build-flasher
 
 before_script:
+  - apt update && apt install -y binutils-arm-none-eabi gcc-mingw-w64-x86-64-win32
   - rustup target add thumbv7em-none-eabihf
+  - rustup target add x86_64-pc-windows-gnu
   - rustup component add rustfmt
   - rustup component add clippy
   - cargo install flip-link
@@ -20,6 +23,25 @@ build:
   stage: build
   script:
     - cargo build --release
+    - cp target/thumbv7em-none-eabihf/release/cats-mobile-transceiver-mainboard firmware.bin
+    - arm-none-eabi-strip firmware.bin
   artifacts:
     paths:
-      - target/thumbv7em-none-eabihf/release/cats-mobile-transceiver-mainboard
+      - firmware.bin
+
+build-flasher:
+  stage: build-flasher
+  script:
+    - mkdir flasher
+    - cd ..
+    - git clone https://gitlab.scd31.com/cats/firmware-flasher
+    - cd firmware-flasher
+    - cp ../mobile-transceiver-software/firmware.bin firmware.bin
+    - cargo build --release
+    - cargo build --release --target x86_64-pc-windows-gnu
+    - cp target/release/stm32-firmware-flasher ../mobile-transceiver-software/flasher/flasher-linux
+    - strip ../mobile-transceiver-software/flasher/flasher-linux
+    - cp target/x86_64-pc-windows-gnu/release/stm32-firmware-flasher.exe ../mobile-transceiver-software/flasher/flasher-windows.exe
+  artifacts:
+    paths:
+      - flasher/*
-- 
GitLab