Skip to content

Commit

Permalink
Merge pull request #31 from cncf/test-equinix-runners
Browse files Browse the repository at this point in the history
adds equinix runner test
  • Loading branch information
RobertKielty authored Jan 17, 2025
2 parents b5e70a6 + 88e2968 commit bc1b606
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test-equinix-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: equinix-2cpu-8gb
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 Equinix 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 bc1b606

Please sign in to comment.