Skip to content

Commit

Permalink
Fix macOS CI build, add macOS ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
svaarala committed Jan 22, 2024
1 parent 0bbd6cd commit acd53f5
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/checkout@v2
- name: Install packages
run: |
python2 -m pip install PyYAML
python -m pip install PyYAML
- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -43,6 +43,26 @@ jobs:
run: |
build/duk -e "print(Duktape.env); print('Hello world!');"
build/duk dist-files/mandel.js
# build_duk_macos_arm64:
# name: Duk macOS 13 ARM64
# runs-on: macos-13-arm64
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Install packages
# run: |
# python -m pip install PyYAML
# - name: Install Node.js
# uses: actions/setup-node@v3
# with:
# node-version: 16
# - name: Build
# run: |
# make build/duk
# - name: Test
# run: |
# build/duk -e "print(Duktape.env); print('Hello world!');"
# build/duk dist-files/mandel.js
build_duk_windows:
name: Duk VS2022
runs-on: windows-2022
Expand Down

0 comments on commit acd53f5

Please sign in to comment.