File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 99 workflow_dispatch :
1010
1111env :
12- toolchain_url : " https://github.com/foss-for-synopsys-dwc-arc-processors/arc-gnu-toolchain/releases/download/2022.03"
12+ toolchain_ver : 2022.03-build002
13+ toolchain_url : https://github.com/foss-for-synopsys-dwc-arc-processors/arc-gnu-toolchain/releases/download/$toolchain_ver
1314
1415jobs :
1516 build :
2021 - cpu : hs4x
2122 toolchain : arc
2223 defconfig : haps_hs_defconfig
23- # - cpu: hs5x
24- # toolchain: arc32
25- # defconfig: haps_hs5x_defconfig
24+ - cpu : hs5x
25+ toolchain : arc32
26+ defconfig : haps_hs5x_defconfig
2627 - cpu : hs6x
2728 toolchain : arc64
2829 defconfig : haps_arc64_defconfig
5657
5758 - name : Download toolchain
5859 run : |
59- curl -L -o toolchain.tar.gz ${{ env.toolchain_url }}/${{ matrix.targets.toolchain }}-glibc-2022.03.tar.gz
60+ echo "Toolchain version:" ${{ env.toolchain_ver }}
61+ echo "Toolchain base URL:" ${{ env.toolchain_url }}
62+ curl -L -o toolchain.tar.gz ${{ env.toolchain_url }}/${{ matrix.targets.toolchain }}-glibc-${{ env.toolchain_ver }}.tar.gz
6063 mkdir -p ${{ github.workspace }}/toolchain
6164 tar -xzf toolchain.tar.gz --strip 1 -C ${{ github.workspace }}/toolchain
6265
9295 runs-on : nsim
9396 strategy :
9497 matrix :
95- targets : [hs4x, hs6x]
98+ targets : [hs4x, hs5x, hs6x]
9699 fail-fast : false
97100
98101 steps :
You can’t perform that action at this time.
0 commit comments