Skip to content

Commit

Permalink
Build on intel and arm
Browse files Browse the repository at this point in the history
  • Loading branch information
richrace committed Jun 23, 2024
1 parent a63be69 commit fb09e76
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 21 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ on:

jobs:
build-macos:
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -30,20 +32,3 @@ jobs:
run: npm ci
- name: build
run: npm run make

build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: install dependencies
run: npm ci
- name: build
run: npm run make
17 changes: 14 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,24 @@ jobs:

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20

- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: setup appdmg
run: |
python3 -m pip install setuptools
npm install -g [email protected]
- name: install dependencies
run: npm ci
- name: publish
Expand Down

0 comments on commit fb09e76

Please sign in to comment.