-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from carlopi/fix_wasm_builds
Add wasm builds
- Loading branch information
Showing
5 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule extension-ci-tools
updated
4 files
+17 −10 | .github/workflows/_extension_deploy.yml | |
+9 −45 | .github/workflows/_extension_distribution.yml | |
+53 −14 | makefiles/duckdb_extension_c_api.Makefile | |
+15 −7 | makefiles/duckdb_extension_rs.Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#![allow(special_module_name)] | ||
|
||
mod lib; | ||
|
||
// To build the Wasm target, a `staticlib` crate-type is required | ||
// | ||
// This is different than the default needed in native, and there is | ||
// currently no way to select crate-type depending on target. | ||
// | ||
// This file sole purpose is remapping the content of lib as an | ||
// example, do not change the content of the file. | ||
// | ||
// To build the Wasm target explicitly, use: | ||
// cargo build --example $PACKAGE_NAME |