Skip to content

Commit

Permalink
Merge pull request #8238 from OpenMined/test-arm64-arc
Browse files Browse the repository at this point in the history
add x64 and arm test
  • Loading branch information
rasswanth-s authored Nov 10, 2023
2 parents c68b833 + 46900cd commit 48810d5
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/test-github-arc.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
name: Actions Runner Controller Demo
on:
workflow_dispatch:
inputs:
runner_name:
description: "Enter the name of the runner scale set"
required: True
default: None

jobs:
Explore-GitHub-Actions:
Test-Github-ARC-x64:
# You need to use the INSTALLATION_NAME from the previous step
runs-on: sh-arc-linux-x64
steps:
- run: echo "🎉 This job uses runner scale set runners!"
- name: "Test Github ARC"
run: |
echo "🎉 This job uses runner scale set runners!"
- name: "Check Architecture"
run: |
uname -a
Test-Github-ARC-arm64:
# You need to use the INSTALLATION_NAME from the previous step
runs-on: sh-arc-linux-arm64
steps:
- name: "Test Github ARC"
run: |
echo "🎉 This job uses runner scale set runners!"
- name: "Check Architecture"
run: |
uname -a

0 comments on commit 48810d5

Please sign in to comment.