Skip to content

Commit

Permalink
fix compiler install issue
Browse files Browse the repository at this point in the history
Change-Id: Ic1124140492239ecbbc71c782b4006dab8ce10eb
  • Loading branch information
taoye9 committed Oct 9, 2024
1 parent 219421c commit c6eb9a7
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
# needs: macos
strategy:
matrix:
threading: [TP]
toolset: [clang]
threading: [TP]
config: [Release]
host: [
{ name: c6g, label: ah-ubuntu_22_04-c6g_2x-50 },
Expand All @@ -102,6 +102,19 @@ jobs:
run: |
sudo apt update -y
sudo apt install -y scons cmake make
- if: matrix.toolset == 'clang'
name: Install clang
uses: KyleMayes/install-llvm-action@e0a8dc9cb8a22e8a7696e8a91a4e9581bec13181
with:
version: "17"

- if: matrix.toolset == 'gcc'
name: Install gcc
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt update -y
sudo apt install -y g++-13
- if: matrix.threading == 'TP'
name: Install eigen3
Expand All @@ -119,19 +132,6 @@ jobs:
run: |
sudo apt install -y libomp-dev
- if: matrix.toolset == 'gcc'
name: Install gcc
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt update -y
sudo apt install -y g++-13
- if: matrix.toolset == 'clang'
name: Install clang
uses: KyleMayes/install-llvm-action@e0a8dc9cb8a22e8a7696e8a91a4e9581bec13181
with:
version: "17"

- name: Build ACL
run: ${{ github.workspace }}/oneDNN/.github/automation/build_acl.sh
env:
Expand Down

0 comments on commit c6eb9a7

Please # to comment.