Skip to content

Commit

Permalink
Merge pull request #9307 from carlopi/ciwasm
Browse files Browse the repository at this point in the history
[Dev] Fix Wasm.yml, hardcoding extension config to latest duckdb-wasm
  • Loading branch information
Mytherin committed Oct 11, 2023
2 parents 0801192 + 4a3deb3 commit 04a7bc9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/Wasm.yml
Expand Up @@ -43,10 +43,11 @@ jobs:
- name: Setup Ccache
uses: hendrikmuhs/ccache-action@main
with:
key: ${{ github.job }}
key: ${{ github.job }}-${{ matrix.duckdb_wasm_arch }}

- name: Build Wasm module
run: |
curl https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/.github/config/extension_config_wasm.cmake -o extension/extension_config.cmake
make ${{ env.DUCKDB_PLATFORM }}
- name: Sign and deploy Wasm extensions
Expand All @@ -57,13 +58,13 @@ jobs:
AWS_DEFAULT_REGION: us-east-1
DUCKDB_EXTENSION_SIGNING_PK: ${{ secrets.DUCKDB_EXTENSION_SIGNING_PK }}
run: |
bash ./duckdb/scripts/extension-upload-wasm.sh ${{ env.DUCKDB_PLATFORM }} ${{ github.event.inputs.duckdb-ref }}
bash ./scripts/extension-upload-wasm.sh ${{ env.DUCKDB_PLATFORM }} ${{ github.event.inputs.duckdb-ref }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: duckdb-wasm-${{ matrix.duckdb_wasm_arch }}
path: loadable_extensions/
path: build/${{ env.DUCKDB_PLATFORM }}/built_extensions
retention-days: 1

trigger_github_pages_build:
Expand Down

0 comments on commit 04a7bc9

Please sign in to comment.