test github actions enterprise runner

Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
markoburcul 2024-10-14 13:35:26 +02:00
parent 228d4b2147
commit 667c6f3509
No known key found for this signature in database
GPG Key ID: FC4CD2F9A040D54A
1 changed files with 39 additions and 0 deletions

39
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Dummy Workflow for macOS ARM64
on:
push:
branches:
- test-github-actions
pull_request:
branches:
- test-github-actions
jobs:
build:
name: Build on Self-hosted macOS ARM64
runs-on:
- self-hosted
- macOS
- ARM64
- macOS-15.0
- Xcode-16.0
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Print Runner Info
run: |
echo "Running on self-hosted macOS ARM64 with macOS-15.0 and Xcode-16.0"
uname -a
sw_vers
xcodebuild -version
- name: Dummy Build Step
run: echo "This is a dummy build step for demonstration purposes."
- name: Run Tests
run: echo "Running tests..."
- name: Dummy Cleanup
run: echo "Cleanup complete."