Skip to content

Commit 7714f94

Browse files
author
mike dupont
committed
Merge remote-tracking branch 'origin/feature/docker-amd64' into feature/docker-amd64
2 parents 0d564cc + 4d1ff63 commit 7714f94

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

.github/workflows/CI.yml

+22-22
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,22 @@ jobs:
4848
name: stable - ${{ matrix.settings.target }} - node@18
4949
runs-on: ${{ matrix.settings.host }}
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: meta-introspector/checkout@v3
5252
- name: Setup node
53-
uses: actions/setup-node@v3
53+
uses: meta-introspector/setup-node@v3
5454
if: ${{ !matrix.settings.docker }}
5555
with:
5656
node-version: 18
5757
check-latest: true
5858
cache: yarn
5959
- name: Install
60-
uses: dtolnay/rust-toolchain@stable
60+
uses: meta-introspector/rust-toolchain@stable
6161
if: ${{ !matrix.settings.docker }}
6262
with:
6363
toolchain: stable
6464
targets: ${{ matrix.settings.target }}
6565
- name: Cache cargo
66-
uses: actions/cache@v3
66+
uses: meta-introspector/cache@v3
6767
with:
6868
path: |
6969
~/.cargo/registry/index/
@@ -72,7 +72,7 @@ jobs:
7272
.cargo-cache
7373
target/
7474
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
75-
- uses: goto-bus-stop/setup-zig@v2
75+
- uses: meta-introspector/setup-zig@v1
7676
if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
7777
with:
7878
version: 0.10.1
@@ -87,15 +87,15 @@ jobs:
8787
- name: Install dependencies
8888
run: yarn install
8989
- name: Setup node x86
90-
uses: actions/setup-node@v3
90+
uses: meta-introspector/setup-node@v3
9191
if: matrix.settings.target == 'i686-pc-windows-msvc'
9292
with:
9393
node-version: 18
9494
check-latest: true
9595
cache: yarn
9696
architecture: x86
9797
- name: Build in docker
98-
uses: addnab/docker-run-action@v3
98+
uses: meta-introspector/docker-run-action@v3
9999
if: ${{ matrix.settings.docker }}
100100
with:
101101
image: ${{ matrix.settings.docker }}
@@ -106,7 +106,7 @@ jobs:
106106
if: ${{ !matrix.settings.docker }}
107107
shell: bash
108108
- name: Upload artifact
109-
uses: actions/upload-artifact@v3
109+
uses: meta-introspector/upload-artifact@v3
110110
with:
111111
name: bindings-${{ matrix.settings.target }}
112112
path: ${{ env.APP_NAME }}.*.node
@@ -129,17 +129,17 @@ jobs:
129129
- '18'
130130
runs-on: ${{ matrix.settings.host }}
131131
steps:
132-
- uses: actions/checkout@v3
132+
- uses: meta-introspector/checkout@v3
133133
- name: Setup node
134-
uses: actions/setup-node@v3
134+
uses: meta-introspector/setup-node@v3
135135
with:
136136
node-version: ${{ matrix.node }}
137137
check-latest: true
138138
cache: yarn
139139
- name: Install dependencies
140140
run: yarn install
141141
- name: Download artifacts
142-
uses: actions/download-artifact@v3
142+
uses: meta-introspector/download-artifact@v3
143143
with:
144144
name: bindings-${{ matrix.settings.target }}
145145
path: .
@@ -161,17 +161,17 @@ jobs:
161161
- '18'
162162
runs-on: ubuntu-latest
163163
steps:
164-
- uses: actions/checkout@v3
164+
- uses: meta-introspector/checkout@v3
165165
- name: Setup node
166-
uses: actions/setup-node@v3
166+
uses: meta-introspector/setup-node@v3
167167
with:
168168
node-version: ${{ matrix.node }}
169169
check-latest: true
170170
cache: yarn
171171
- name: Install dependencies
172172
run: yarn install
173173
- name: Download artifacts
174-
uses: actions/download-artifact@v3
174+
uses: meta-introspector/download-artifact@v3
175175
with:
176176
name: bindings-x86_64-unknown-linux-gnu
177177
path: .
@@ -186,29 +186,29 @@ jobs:
186186
- build
187187
runs-on: macos-latest
188188
steps:
189-
- uses: actions/checkout@v3
189+
- uses: meta-introspector/checkout@v3
190190
- name: Setup node
191-
uses: actions/setup-node@v3
191+
uses: meta-introspector/setup-node@v3
192192
with:
193193
node-version: 18
194194
check-latest: true
195195
cache: yarn
196196
- name: Install dependencies
197197
run: yarn install
198198
- name: Download macOS x64 artifact
199-
uses: actions/download-artifact@v3
199+
uses: meta-introspector/download-artifact@v3
200200
with:
201201
name: bindings-x86_64-apple-darwin
202202
path: artifacts
203203
- name: Download macOS arm64 artifact
204-
uses: actions/download-artifact@v3
204+
uses: meta-introspector/download-artifact@v3
205205
with:
206206
name: bindings-aarch64-apple-darwin
207207
path: artifacts
208208
- name: Combine binaries
209209
run: yarn universal
210210
- name: Upload artifact
211-
uses: actions/upload-artifact@v3
211+
uses: meta-introspector/upload-artifact@v3
212212
with:
213213
name: bindings-universal-apple-darwin
214214
path: ${{ env.APP_NAME }}.*.node
@@ -221,17 +221,17 @@ jobs:
221221
- test-linux-x64-gnu-binding
222222
- universal-macOS
223223
steps:
224-
- uses: actions/checkout@v3
224+
- uses: meta-introspector/checkout@v3
225225
- name: Setup node
226-
uses: actions/setup-node@v3
226+
uses: meta-introspector/setup-node@v3
227227
with:
228228
node-version: 18
229229
check-latest: true
230230
cache: yarn
231231
- name: Install dependencies
232232
run: yarn install
233233
- name: Download all artifacts
234-
uses: actions/download-artifact@v3
234+
uses: meta-introspector/download-artifact@v3
235235
with:
236236
path: artifacts
237237
- name: Move artifacts

0 commit comments

Comments
 (0)