Skip to content

Commit

Permalink
retry
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakuhito committed Jul 4, 2024
1 parent 96b6deb commit 4db2b2c
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,32 @@ jobs:
fail-fast: false
matrix:
settings:
- host: macos-latest
target: x86_64-apple-darwin
build: yarn build --target x86_64-apple-darwin
- host: windows-latest
build: yarn build --target x86_64-pc-windows-msvc
target: x86_64-pc-windows-msvc
# - host: macos-latest
# target: x86_64-apple-darwin
# build: yarn build --target x86_64-apple-darwin
# - host: windows-latest
# build: yarn build --target x86_64-pc-windows-msvc
# target: x86_64-pc-windows-msvc
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: yarn build --target x86_64-unknown-linux-gnu
- host: macos-latest
target: aarch64-apple-darwin
build: yarn build --target aarch64-apple-darwin
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
build: yarn build --target aarch64-unknown-linux-gnu
- host: windows-latest
target: aarch64-pc-windows-msvc
build: yarn build --target aarch64-pc-windows-msvc
build: |
sudo apt-get update && sudo apt-get install -y libssl-dev
yarn build --target x86_64-unknown-linux-gnu
# - host: macos-latest
# target: aarch64-apple-darwin
# build: yarn build --target aarch64-apple-darwin
# - host: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
# build: |
# sudo apt-get update && sudo apt-get install -y libssl-dev
# yarn build --target aarch64-unknown-linux-gnu
# - host: windows-latest
# target: aarch64-pc-windows-msvc
# build: |
# sudo apt-get update && sudo apt-get install -y libssl-dev
# yarn build --target aarch64-pc-windows-msvc
name: stable - ${{ matrix.settings.target }} - node@20
runs-on: ${{ matrix.settings.host }}
steps:
Expand Down Expand Up @@ -92,10 +98,6 @@ jobs:
node-version: 20
cache: yarn
architecture: x86
- name: Install OpenSSL development headers
run: sudo apt-get update && sudo apt-get install -y libssl-dev
if: ${{ matrix.settings.docker }}
shell: bash
- name: Build in docker
uses: addnab/docker-run-action@v3
if: ${{ matrix.settings.docker }}
Expand Down

0 comments on commit 4db2b2c

Please sign in to comment.