Skip to content

Commit

Permalink
Add a Wasm build for .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
bricelam committed Jun 30, 2023
1 parent 9809622 commit 4278389
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ jobs:
config:
# Don't forget to add a download-artifact steps in test and publish
- '{ "tfm": "net6.0", "emsdk": "2.0.23" }' # eol: 2024-11-12
- '{ "tfm": "net7.0", "emsdk": "3.1.12" }' # eol: 2023-05-08
- '{ "tfm": "net7.0", "emsdk": "3.1.12" }' # eol: 2024-05-14
- '{ "tfm": "net8.0", "emsdk": "3.1.34" }' # eol: 2026-11-14
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -191,6 +192,10 @@ jobs:
with:
name: bin-wasm-net7.0
path: cb/bld/bin
- uses: actions/download-artifact@v2
with:
name: bin-wasm-net8.0
path: cb/bld/bin
# note that the following is mostly a copy of the build script from the SQLitePCL.raw repo
- name: "Set up Java: 11"
uses: actions/setup-java@v1
Expand Down Expand Up @@ -254,6 +259,10 @@ jobs:
with:
name: bin-wasm-net7.0
path: bld/bin
- uses: actions/download-artifact@v2
with:
name: bin-wasm-net8.0
path: bld/bin
- name: Fix permissions
run: |
find ./bld/bin/e_sqlite3 -name *.so | xargs chmod 0775
Expand Down

0 comments on commit 4278389

Please sign in to comment.