Skip to content

Commit

Permalink
Merge pull request #42 from RobertKielty/arm64-action-at
Browse files Browse the repository at this point in the history
adds basic ora arm64 runner test
  • Loading branch information
RobertKielty authored Feb 20, 2025
2 parents 517b70c + 4aa3470 commit f92e912
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test-oracle-arm-runners.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test Oracle Runner

on:
push:
branches:
- main
workflow_dispatch:

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

- name: Run uname to verify architecture
run: |
echo "Testing Oracle Runner"
echo "uname -a:"
uname -a
- name: Run a basic workload
run: |
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 f92e912

Please sign in to comment.