Merge pull request #30 from RobertKielty/runner-ci #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 / |