Skip to content

Commit

Permalink
Add ARM ACFL build to CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Nov 2, 2023
1 parent 25adae1 commit f3e49ba
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,41 @@ jobs:
command: timeout --foreground -k 10s 4m make check
no_output_timeout: 30s

arm_acfl:
parameters:
scheduler:
type: string
topology:
type: string
machine:
image: ubuntu-2204:2023.10.1
resource_class: arm.medium
environment:
CC: armclang
CXX: armclang++
steps:
- checkout
- run: |
sudo apt-get update -y
sudo apt-get install -y gcc-12 g++-12
sudo apt-get install -y autoconf automake libtool
sudo apt-get install -y hwloc libhwloc-dev
wget -O acfl.tar https://developer.arm.com/-/media/Files/downloads/hpc/arm-compiler-for-linux/23-10/arm-compiler-for-linux_23.10_Ubuntu-22.04_aarch64.tar
tar -vxf acfl.tar
ls
cat arm-compiler-for-linux_23.10_Ubuntu-22.04/license_terms
cat arm-compiler-for-linux_23.10_Ubuntu-22.04/RELEASE_NOTES.txt
./arm-compiler-for-linux_23.10_Ubuntu-22.04/arm-compiler-for-linux_23.10_Ubuntu-22.04.sh
rm acfl.tar
armclang -v
- run: |
./autogen.sh
./configure --enable-picky --with-scheduler=<< parameters.scheduler >> -with-topology=<< parameters.topology >>
make -j2
- run:
command: timeout --foreground -k 10s 4m make check
no_output_timeout: 30s

workflows:
build_and_test:
jobs:
Expand All @@ -112,4 +147,9 @@ workflows:
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]
sanitizer: [address, memory, thread, undefined]
- arm_acfl:
matrix:
parameters:
scheduler: [nemesis, sherwood, distrib]
topology: ['no', binders, hwloc]

0 comments on commit f3e49ba

Please sign in to comment.