Skip to content

Commit 6a839e7

Browse files
authored
Merge branch 'main' into revNativeAssets
2 parents b8680ee + 4c2089e commit 6a839e7

File tree

83 files changed

+6651
-1352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+6651
-1352
lines changed

.github/workflows/artifacts-build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@ jobs:
8888
--exclude zerofrom-derive
8989
--exclude zerovec-derive
9090
91+
- uses: actions/upload-artifact@v4
92+
with:
93+
name: rustdoc
94+
path: target/doc
95+
9196
- name: Upload docs to Google Cloud Storage (non-main)
9297
run: |
9398
gsutil -m cp -r target/doc gs://${{ env.GCP_PR_BUCKET_ID }}/gha/${{ github.sha }}/rustdoc
@@ -134,6 +139,11 @@ jobs:
134139
uses: mattnotmitt/doxygen-action@411df0c62acb5b96b8a93d93a7bf4b753c47ea05 # v1.9.5
135140
with:
136141
doxyfile-path: 'tools/config.doxy'
142+
143+
- uses: actions/upload-artifact@v4
144+
with:
145+
name: cppdoc
146+
path: html
137147

138148
- name: Upload docs to Google Cloud Storage (non-main)
139149
run: |
@@ -180,6 +190,11 @@ jobs:
180190
npm install [email protected] --exact
181191
node_modules/typedoc/bin/typedoc lib/index.d.ts --out docs --readme ../../tutorials/using-from-js.md --basePath lib
182192
cd ../..
193+
194+
- uses: actions/upload-artifact@v4
195+
with:
196+
name: tsdoc
197+
path: ffi/npm/docs
183198

184199
- name: Upload docs to Google Cloud Storage (non-main)
185200
run: |
@@ -231,6 +246,11 @@ jobs:
231246
dart doc
232247
cd ../..
233248
249+
- uses: actions/upload-artifact@v4
250+
with:
251+
name: dartdoc
252+
path: ffi/dart/doc/api
253+
234254
- name: Upload docs to Google Cloud Storage (non-main)
235255
run: |
236256
gsutil -m cp -r ffi/dart/doc/api gs://${{ env.GCP_PR_BUCKET_ID }}/gha/${{ github.sha }}/dartdoc
@@ -271,6 +291,11 @@ jobs:
271291
- name: Run Webpack
272292
run: npm -C tutorials/web-demo run build
273293

294+
- uses: actions/upload-artifact@v4
295+
with:
296+
name: wasmdemo
297+
path: tutorials/web-demo/public
298+
274299
- name: Upload wasm-demo bundle to Google Cloud Storage
275300
run: |
276301
gsutil -m cp -r tutorials/web-demo/public/* gs://${{ env.GCP_MAIN_BUCKET_ID }}/gha/wasm-demo

.github/workflows/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
runs-on: ubuntu-latest
176176
strategy:
177177
matrix:
178-
behavior: [local] # reenable cratesio for 2.0
178+
behavior: [local, cratesio]
179179
fail-fast: false
180180
steps:
181181
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

0 commit comments

Comments
 (0)