ci: Set environment variables in CI build
This commit is contained in:
parent
9c7214d377
commit
f0c408fc9c
1 changed files with 6 additions and 2 deletions
8
.github/workflows/create-release.yaml
vendored
8
.github/workflows/create-release.yaml
vendored
|
|
@ -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: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue