Skip to content

Commit

Permalink
perfect build
Browse files Browse the repository at this point in the history
  • Loading branch information
QuincySx committed Jun 18, 2024
1 parent 04cec05 commit 83e7b76
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ jobs:
fail-fast: false
matrix:
buildType: [Release]
os: [macOS-14]
# macos-13 Intel
# macos-14 Apple Silicon
os: [macOS-14, macos-13]
env:
BUILDTYPE: ${{ matrix.buildType }}
steps:
- name: Install automake
run: brew install automake autoconf libtool texinfo
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build it
run: make VERBOSE=1
- name: Test it
run: make test
- name: Test it (advanced)
run: make test-advanced
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts-${{ matrix.buildType }}-${{ matrix.os }}
path: ./build/*
- name: Install automake
run: brew install automake autoconf libtool texinfo
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Build it
run: make VERBOSE=1
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts-${{ matrix.buildType }}-${{ matrix.os }}
path: |
./build/tjs
./build/txiki

0 comments on commit 83e7b76

Please sign in to comment.