Skip to content

Commit

Permalink
test github actions enterprise runner
Browse files Browse the repository at this point in the history
Signed-off-by: markoburcul <[email protected]>
  • Loading branch information
markoburcul committed Oct 14, 2024
1 parent 228d4b2 commit 667c6f3
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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."

0 comments on commit 667c6f3

Please sign in to comment.