mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-22 23:36:36 +08:00
Add macosx
This commit is contained in:
parent
0a2c2d2fc7
commit
d4d3a96a22
39
.github/workflows/build-macosx.yml
vendored
Normal file
39
.github/workflows/build-macosx.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: build-macosx
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
amd64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
-
|
||||
name: Build
|
||||
run: |
|
||||
chmod +x compile_macosx.sh
|
||||
./compile_macosx.sh amd64 Release
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: macosx-amd64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
arm64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
-
|
||||
name: Build
|
||||
run: |
|
||||
chmod +x compile_macosx.sh
|
||||
./compile_macosx.sh arm64 Release
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: macosx-arm64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
Loading…
Reference in New Issue
Block a user