From 32ba900134120384bdfc2fd54cbc234ec96429c5 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 22 Feb 2025 18:22:01 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20CI/CD=20workfl?= =?UTF-8?q?ow=20to=20export=20GCC=20compiler=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated CI/CD workflow to export path variable in GitHub environment variables for easier access to temporary GCC compiler. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6646f60..9da41aa 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -47,8 +47,8 @@ jobs: echo "MSP430 GCC not found!" exit 1 fi - echo "export PATH=/tmp/msp430-gcc-9.3.1.11_linux64/bin:$PATH" >> ~/.bashrc - source ~/.bashrc + echo "export PATH=/tmp/msp430-gcc-9.3.1.11_linux64/bin:$PATH" >> $GITHUB_ENV + echo $PATH - name: Check if msp430-elf-gcc is available run: |