Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
allewalker committed Mar 25, 2024
2 parents df609ef + b73a334 commit 90d5723
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,13 @@ jobs:
- name: 克隆 ec7xx-csdk 代码库
run: git clone --depth=1 https://github.com/openLuat/luatos-soc-2023.git
- name: 下载Gcc
if: ${{ ! ( (matrix.csdk_project == 'example_audio' || matrix.csdk_project == 'example_camera') && matrix.csdk_chip == 'ec718pv' ) }}
run: |
mkdir tools
wget -q -O tools/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 https://github.com/wendal/xmake-docker/releases/download/dev-gcc/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
cd tools && tar xf gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
- name: 初始化工具链
if: ${{ ! ( (matrix.csdk_project == 'example_audio' || matrix.csdk_project == 'example_camera') && matrix.csdk_chip == 'ec718pv' ) }}
run: |
# sudo add-apt-repository ppa:xmake-io/xmake -y
sudo apt update -y
Expand All @@ -143,7 +145,7 @@ jobs:
# xmake update
curl -fsSL https://xmake.io/shget.text | bash -s v2.8.6
- name: 构建指定项目
if: ${{ ! ( matrix.csdk_project == 'example_audio' && matrix.csdk_chip == 'ec718pv' ) }}
if: ${{ ! ( (matrix.csdk_project == 'example_audio' || matrix.csdk_project == 'example_camera') && matrix.csdk_chip == 'ec718pv' ) }}
run: |
export GCC_PATH=`pwd`/tools/gcc-arm-none-eabi-10-2020-q4-major
cd luatos-soc-2023
Expand Down

0 comments on commit 90d5723

Please sign in to comment.