From 68434d58e95ad1343e77b2a1599353b608c54b5e Mon Sep 17 00:00:00 2001 From: Nathaniel McVicar Date: Thu, 30 Nov 2023 07:21:52 +0000 Subject: [PATCH 1/4] Add azure pipeline test --- .azure-pipelines/arm-cpu-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .azure-pipelines/arm-cpu-ci.yml diff --git a/.azure-pipelines/arm-cpu-ci.yml b/.azure-pipelines/arm-cpu-ci.yml new file mode 100644 index 00000000..33978662 --- /dev/null +++ b/.azure-pipelines/arm-cpu-ci.yml @@ -0,0 +1,9 @@ +jobs: +- job: Test-Arm-CPU + timeoutInMinutes: 8 + pool: + vmImage: 'ubuntu-latest' + + steps: + - script: | + ls From edff8133c13de154c6e900c0adb061072a16e1d3 Mon Sep 17 00:00:00 2001 From: Nathaniel McVicar Date: Thu, 30 Nov 2023 07:22:50 +0000 Subject: [PATCH 2/4] fix name --- .azure-pipelines/arm-cpu-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/arm-cpu-ci.yml b/.azure-pipelines/arm-cpu-ci.yml index 33978662..7edee336 100644 --- a/.azure-pipelines/arm-cpu-ci.yml +++ b/.azure-pipelines/arm-cpu-ci.yml @@ -1,5 +1,5 @@ jobs: -- job: Test-Arm-CPU +- job: TestArmCPU timeoutInMinutes: 8 pool: vmImage: 'ubuntu-latest' From ae2702914ec2a75b95368605120902495a048f5d Mon Sep 17 00:00:00 2001 From: Nathaniel McVicar Date: Thu, 30 Nov 2023 08:58:02 +0000 Subject: [PATCH 3/4] Add github runner test --- .github/workflows/arm-cpu-tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/arm-cpu-tests.yml diff --git a/.github/workflows/arm-cpu-tests.yml b/.github/workflows/arm-cpu-tests.yml new file mode 100644 index 00000000..f55b393d --- /dev/null +++ b/.github/workflows/arm-cpu-tests.yml @@ -0,0 +1,13 @@ +name: ARM CPU Triton Shared Testing + +on: + workflow_dispatch: + + +jobs: + test_triton_shared_arm: + runs-on: ["self-hosted", "1ES.Pool=triton-shared-github-arm"] + + steps: + - name: Check Architecture + run: uname -a From 631b74170f3b68f58a37ce289dd9c8bd9b8b5536 Mon Sep 17 00:00:00 2001 From: Nathaniel McVicar Date: Thu, 30 Nov 2023 09:06:02 +0000 Subject: [PATCH 4/4] run on pr --- .github/workflows/arm-cpu-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/arm-cpu-tests.yml b/.github/workflows/arm-cpu-tests.yml index f55b393d..34177a60 100644 --- a/.github/workflows/arm-cpu-tests.yml +++ b/.github/workflows/arm-cpu-tests.yml @@ -1,6 +1,8 @@ name: ARM CPU Triton Shared Testing on: + pull_request: + branches: [ "main" ] workflow_dispatch: