-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove private repo dependencies (#43)
- Loading branch information
Yongwoo Lee
authored
Jul 15, 2021
1 parent
e4c26e2
commit 76f849e
Showing
9 changed files
with
9 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,10 +6,6 @@ jobs: | |
libwasmvm_sanity: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Git | ||
run: sudo apt install -y git | ||
- name: Git config | ||
run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}:[email protected]/".insteadOf "https://github.com/" | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
|
@@ -58,7 +54,7 @@ jobs: | |
- name: Check Go formatting | ||
run: | | ||
[ "$(gofmt -l .)" = "" ] || (gofmt -d . && exit 1) | ||
format-scripts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -87,10 +83,6 @@ jobs: | |
build_shared_library: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Git | ||
run: sudo apt install -y git | ||
- name: Git config | ||
run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}:[email protected]/".insteadOf "https://github.com/" | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
|
@@ -135,7 +127,7 @@ jobs: | |
name: libwasmvm | ||
path: /tmp/builds | ||
- name: Copy libwasmvm | ||
run: cp /tmp/builds/libwasmvm.so ./api | ||
run: cp /tmp/builds/libwasmvm.so ./api | ||
- name: Go integration tests | ||
run: make test | ||
- name: Go tests with cgo and race condition safety checks | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
|
||
git config --global url."https://${GITHUB_TOKEN}:[email protected]/".insteadOf "https://github.com/" | ||
cargo build --release | ||
cp target/release/deps/libwasmvm.so api | ||
# FIXME: re-enable stripped so when we approach a production release, symbols are nice for debugging | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,5 @@ export LIBZ_SYS_STATIC=1 | |
export CC=o64-clang | ||
export CXX=o64-clang++ | ||
|
||
git config --global url."https://${GITHUB_TOKEN}:[email protected]/".insteadOf "https://github.com/" | ||
cargo build --release --target x86_64-apple-darwin | ||
cp target/x86_64-apple-darwin/release/deps/libwasmvm.dylib api |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/sh | ||
|
||
git config --global url."https://${GITHUB_TOKEN}:[email protected]/".insteadOf "https://github.com/" | ||
cargo build --release --example muslc | ||
cp /code/target/release/examples/libmuslc.a /code/api/libwasmvm_muslc.a |