test: ARC self-hosted runner validation #1
Workflow file for this run
This file contains hidden or 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: ARC Runner Validation | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - .github/workflows/arc-test.yml | |
| jobs: | |
| validate: | |
| runs-on: arc-runner-set | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Runner info | |
| run: | | |
| echo "Node: $(hostname)" | |
| echo "OS: $(uname -a)" | |
| echo "CPUs: $(nproc)" | |
| echo "Memory: $(free -h | grep Mem | awk '{print $2}')" | |
| echo "Disk: $(df -h / | tail -1 | awk '{print $2}')" | |
| - name: Test docker | |
| run: | | |
| docker run --rm hello-world | |
| - name: Success | |
| run: echo "awaaaaaa ARC runner works!! :3" |