-
Notifications
You must be signed in to change notification settings - Fork 234
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 #4083 from nymtech/release/2023.3-kinder
Release/2023.3 kinder
- Loading branch information
Showing
472 changed files
with
22,291 additions
and
5,721 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,37 @@ | ||
name: 'Install wasm-opt' | ||
description: 'Installs wasm-opt from binaryen' | ||
inputs: | ||
version: | ||
description: 'Version of wasm-opt to install' | ||
default: '116' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Check platform compatibility | ||
run: | | ||
if [[ "$(uname)" != "Linux" ]]; then | ||
echo "Error: This action is only compatible with Linux." | ||
exit 1 | ||
fi | ||
shell: bash | ||
|
||
- name: Download wasm-opt | ||
run: | | ||
set -e | ||
SOURCE="https://github.com/WebAssembly/binaryen/releases/download/version_${{ inputs.version }}/binaryen-version_${{ inputs.version }}-x86_64-linux.tar.gz" | ||
TEMP_ARCHIVE="$RUNNER_TEMP/binaryen-version_${{ inputs.version }}-x86_64-linux.tar.gz" | ||
curl -L -o "$TEMP_ARCHIVE" "$SOURCE" | ||
tar -xvzf $TEMP_ARCHIVE -C $RUNNER_TEMP | ||
echo "$RUNNER_TEMP/binaryen-version_${{ inputs.version }}/bin" >> $GITHUB_PATH | ||
shell: bash | ||
id: install-binary | ||
|
||
- name: Verify installation | ||
run: | | ||
if ! command -v wasm-opt &> /dev/null; then | ||
echo "Error: wasm-opt binary was not installed successfully." | ||
exit 1 | ||
fi | ||
shell: bash | ||
id: verify-installation | ||
|
10 changes: 5 additions & 5 deletions
10
...b/workflows/build-and-upload-binaries.yml → .github/workflows/build-upload-binaries.yml
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,7 +1,7 @@ | ||
name: ci-build-ts | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths: | ||
- "ts-packages/**" | ||
- "sdk/typescript/**" | ||
|
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
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: ci-nym-vpn-ui-js | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'nym-vpn/ui/src/**' | ||
- 'nym-vpn/ui/package.json' | ||
- 'nym-vpn/ui/index.html' | ||
pull_request: | ||
paths: | ||
- 'nym-vpn/ui/src/**' | ||
- 'nym-vpn/ui/package.json' | ||
- 'nym-vpn/ui/index.html' | ||
|
||
jobs: | ||
check: | ||
runs-on: [ self-hosted, custom-linux ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install Yarn | ||
run: npm install -g yarn | ||
- name: Install dependencies | ||
working-directory: nym-vpn/ui | ||
run: yarn | ||
- name: Type-check | ||
working-directory: nym-vpn/ui | ||
run: yarn typecheck | ||
- name: Check lint | ||
working-directory: nym-vpn/ui | ||
run: yarn lint | ||
- name: Check formatting | ||
working-directory: nym-vpn/ui | ||
run: yarn fmt:check | ||
# - name: Run tests | ||
# working-directory: nym-vpn/ui | ||
# run: yarn test | ||
- name: Check build | ||
working-directory: nym-vpn/ui | ||
run: yarn build |
Oops, something went wrong.