-
Notifications
You must be signed in to change notification settings - Fork 22
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 #53 from TheVeryDarkness/master
Add basic support for targets related to wasm32.
- Loading branch information
Showing
4 changed files
with
97 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: WASM | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: "35 2 * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Add target | ||
run: rustup target add wasm32-unknown-unknown | ||
- name: Run build | ||
run: cargo build --verbose | ||
- name: Setup emsdk with cache | ||
uses: mymindstorm/setup-emsdk@v11 | ||
with: | ||
version: 1.38.40 | ||
actions-cache-folder: 'emsdk-cache' | ||
- name: Install vcpkg | ||
run: | | ||
git clone https://github.com/Microsoft/vcpkg.git vcp | ||
vcp/bootstrap-vcpkg.sh | ||
- name: Run integration tests | ||
run: | | ||
tests/wasm.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
cd $SCRIPTDIR | ||
|
||
TRIPLET=wasm32-emscripten | ||
|
||
export CARGO_BUILD_TARGET=wasm32-unknown-unknown | ||
|
||
export VCPKG_ROOT=$SCRIPTDIR/../vcp | ||
|
||
source ../setup_vcp.sh | ||
|
||
for port in harfbuzz ; do | ||
# check that the port fails before it is installed | ||
$VCPKG_ROOT/vcpkg remove $port:$TRIPLET || true | ||
cargo clean --manifest-path $port/Cargo.toml | ||
cargo build --manifest-path $port/Cargo.toml && exit 2 | ||
echo THIS FAILURE IS EXPECTED | ||
echo This is to ensure that we are not spuriously succeeding because the libraries already exist somewhere on the build machine. | ||
$VCPKG_ROOT/vcpkg install $port:$TRIPLET | ||
cargo build --manifest-path $port/Cargo.toml | ||
done | ||
|
||
|
||
# check manifest mode | ||
|
||
# clean first | ||
cargo clean --manifest-path top-level/Cargo.toml | ||
unset VCPKG_INSTALLED_ROOT | ||
rm -rf $VCPKG_ROOT/installed | ||
|
||
cargo build --manifest-path top-level/Cargo.toml && exit 2 | ||
echo "This failure is expected, as we haven't installed anything from vcpkg yet." | ||
|
||
export VCPKG_INSTALLED_ROOT=$SCRIPTDIR/top-level/vcpkg_installed | ||
pushd top-level | ||
$VCPKG_ROOT/vcpkg install --triplet=$TRIPLET | ||
popd | ||
cargo build --manifest-path top-level/Cargo.toml | ||
unset VCPKG_INSTALLED_ROOT |