Skip to content

Commit f9ef053

Browse files
S. GolovanovVVIsaev
authored andcommitted
CI: enable hs5x tests
1 parent 1832c34 commit f9ef053

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
workflow_dispatch:
1010

1111
env:
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

1415
jobs:
1516
build:
@@ -20,9 +21,9 @@ jobs:
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
@@ -56,7 +57,9 @@ jobs:
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
@@ -92,7 +95,7 @@ jobs:
9295
runs-on: nsim
9396
strategy:
9497
matrix:
95-
targets: [hs4x, hs6x]
98+
targets: [hs4x, hs5x, hs6x]
9699
fail-fast: false
97100

98101
steps:

0 commit comments

Comments
 (0)