Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/docker-amd64' into featu…
Browse files Browse the repository at this point in the history
…re/docker-amd64
  • Loading branch information
mike dupont committed Jan 15, 2025
2 parents 0d564cc + 4d1ff63 commit 7714f94
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,22 @@ jobs:
name: stable - ${{ matrix.settings.target }} - node@18
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v3
- uses: meta-introspector/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
if: ${{ !matrix.settings.docker }}
with:
node-version: 18
check-latest: true
cache: yarn
- name: Install
uses: dtolnay/rust-toolchain@stable
uses: meta-introspector/rust-toolchain@stable
if: ${{ !matrix.settings.docker }}
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- name: Cache cargo
uses: actions/cache@v3
uses: meta-introspector/cache@v3
with:
path: |
~/.cargo/registry/index/
Expand All @@ -72,7 +72,7 @@ jobs:
.cargo-cache
target/
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
- uses: goto-bus-stop/setup-zig@v2
- uses: meta-introspector/setup-zig@v1
if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
with:
version: 0.10.1
Expand All @@ -87,15 +87,15 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Setup node x86
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
if: matrix.settings.target == 'i686-pc-windows-msvc'
with:
node-version: 18
check-latest: true
cache: yarn
architecture: x86
- name: Build in docker
uses: addnab/docker-run-action@v3
uses: meta-introspector/docker-run-action@v3
if: ${{ matrix.settings.docker }}
with:
image: ${{ matrix.settings.docker }}
Expand All @@ -106,7 +106,7 @@ jobs:
if: ${{ !matrix.settings.docker }}
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: meta-introspector/upload-artifact@v3
with:
name: bindings-${{ matrix.settings.target }}
path: ${{ env.APP_NAME }}.*.node
Expand All @@ -129,17 +129,17 @@ jobs:
- '18'
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v3
- uses: meta-introspector/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: yarn
- name: Install dependencies
run: yarn install
- name: Download artifacts
uses: actions/download-artifact@v3
uses: meta-introspector/download-artifact@v3
with:
name: bindings-${{ matrix.settings.target }}
path: .
Expand All @@ -161,17 +161,17 @@ jobs:
- '18'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: meta-introspector/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: yarn
- name: Install dependencies
run: yarn install
- name: Download artifacts
uses: actions/download-artifact@v3
uses: meta-introspector/download-artifact@v3
with:
name: bindings-x86_64-unknown-linux-gnu
path: .
Expand All @@ -186,29 +186,29 @@ jobs:
- build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: meta-introspector/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
with:
node-version: 18
check-latest: true
cache: yarn
- name: Install dependencies
run: yarn install
- name: Download macOS x64 artifact
uses: actions/download-artifact@v3
uses: meta-introspector/download-artifact@v3
with:
name: bindings-x86_64-apple-darwin
path: artifacts
- name: Download macOS arm64 artifact
uses: actions/download-artifact@v3
uses: meta-introspector/download-artifact@v3
with:
name: bindings-aarch64-apple-darwin
path: artifacts
- name: Combine binaries
run: yarn universal
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: meta-introspector/upload-artifact@v3
with:
name: bindings-universal-apple-darwin
path: ${{ env.APP_NAME }}.*.node
Expand All @@ -221,17 +221,17 @@ jobs:
- test-linux-x64-gnu-binding
- universal-macOS
steps:
- uses: actions/checkout@v3
- uses: meta-introspector/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
uses: meta-introspector/setup-node@v3
with:
node-version: 18
check-latest: true
cache: yarn
- name: Install dependencies
run: yarn install
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: meta-introspector/download-artifact@v3
with:
path: artifacts
- name: Move artifacts
Expand Down

0 comments on commit 7714f94

Please sign in to comment.