ci: Set environment variables in CI build

This commit is contained in:
robshape 2023-04-24 16:07:06 +02:00
parent 9c7214d377
commit f0c408fc9c

View file

@ -26,8 +26,12 @@ jobs:
with: with:
image: rg35xx-toolchain-new:latest image: rg35xx-toolchain-new:latest
options: -v ${{github.workspace}}:/root/workspace options: -v ${{github.workspace}}:/root/workspace
run: make all run: |
shell: bash export CROSS_COMPILE=/opt/rg35xx-toolchain/usr/bin/arm-buildroot-linux-gnueabihf-
export PATH="/opt/rg35xx-toolchain/usr/bin:${PATH}:/opt/rg35xx-toolchain/usr/arm-buildroot-linux-gnueabihf/sysroot/bin"
export PREFIX=/opt/rg35xx-toolchain/usr/arm-buildroot-linux-gnueabihf/sysroot/usr
export UNION_PLATFORM=rg35xx
make all
- name: Create release - name: Create release
run: | run: |