Skip to content

Commit

Permalink
adds test for oci arm runner
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Kielty <[email protected]>
  • Loading branch information
RobertKielty committed Jan 15, 2025
1 parent 84460e8 commit ad8d7d2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test-oci-arm-runners.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test Oracle AARCH64 Runner

on:
push:
branches:
- main
workflow_dispatch:

jobs:
test-runner:
runs-on: oracle-aarch64-4cpu-16gb
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run uname to verify architecture
run: uname -a

- name: Run a basic workload
run: |
echo "Testing Oracle AARCH64 Runner"
echo "CPU Info:"
lscpu
- name: Run a Docker container
run: |
docker run --rm alpine echo "Docker is working on the runner"
- name: Check local disk
run: |
df -h /

0 comments on commit ad8d7d2

Please sign in to comment.