Skip to content

Commit

Permalink
Merge pull request #30 from RobertKielty/runner-ci
Browse files Browse the repository at this point in the history
adds test for oci arm runner
  • Loading branch information
RobertKielty authored Jan 15, 2025
2 parents 03dfbe5 + ad8d7d2 commit b5e70a6
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 b5e70a6

Please sign in to comment.