Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
WIP: osx-arm64 release build
Browse files Browse the repository at this point in the history
  • Loading branch information
hkratz committed Sep 2, 2021
1 parent e6be45f commit 0e84af7
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build-osx-arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: osx-arm64 Release Build

on:
workflow_dispatch:
push:
branches:
- macos-arm64

jobs:
build:
runs-on: [self-hosted, macOS, ARM64]
steps:
- uses: actions/checkout@v1

# Build runner layout
- name: Build & Layout Release
run: |
./dev.sh layout Release osx-arm64
working-directory: src

# Run tests
- name: L0
run: |
./dev.sh test
working-directory: src

# Create runner package tar.gz/zip
- name: Package Release
run: |
./dev.sh package Release osx-arm64
working-directory: src

# Upload runner package tar.gz/zip as artifact.
# Since each package name is unique, so we don't need to put ${{matrix}} info into artifact name
- name: Publish Artifact
uses: actions/upload-artifact@v1
with:
name: runner-packages
path: _package

0 comments on commit 0e84af7

Please sign in to comment.