-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21deea4
commit 3930139
Showing
1 changed file
with
4 additions
and
3 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 |
---|---|---|
|
@@ -173,17 +173,17 @@ jobs: | |
version: '13.2' | ||
shell: bash | ||
run: | | ||
pkg install -y -f curl node libnghttp2 npm yarn | ||
sudo pkg install -y -f curl node libnghttp2 npm yarn | ||
curl https://sh.rustup.rs -sSf --output rustup.sh | ||
sh rustup.sh -y --profile minimal --default-toolchain beta | ||
export PATH="/usr/local/cargo/bin:$PATH" | ||
source "$HOME/.cargo/env" | ||
echo "~~~~ rustc --version ~~~~" | ||
rustc --version | ||
echo "~~~~ node -v ~~~~" | ||
node -v | ||
echo "~~~~ yarn --version ~~~~" | ||
yarn --version | ||
yarn install | ||
yarn install || true | ||
yarn build-release | ||
strip -x *.node | ||
cargo build --release --features cli | ||
|
@@ -210,6 +210,7 @@ jobs: | |
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- uses: bahmutov/[email protected] | ||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
|