-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor, multiple fixes and add temporal runtime (#66)
* fix docker ex * manage runtime dependency * replace haproxy with envoy * fix MET-60 * fix MET-85 * fix tests * fix tests * refactor script * add missing files * refactor native * add temporal rust * refactor deno_bindgen to avoid macro panic-ing due to concurrent compilation and bindings.json * add temporal * add protoc * fix tests * upgrade * fix unix * fix crash * fix crash
- Loading branch information
Showing
85 changed files
with
6,576 additions
and
2,051 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,10 @@ on: | |
|
||
env: | ||
PYTHON_VERSION: "3.8" | ||
PROTOC_VERSION: "3.x" | ||
POETRY_VERSION: "1.3.1" | ||
DENO_BINDGEN_URL: https://github.com/denoland/deno_bindgen/raw/main/cli.ts | ||
DENO_VERSION: "1.29.2" | ||
DENO_VERSION: "1.29.4" | ||
PNPM_VERSION: "7.9.3" | ||
NODE_VERSION: "18.12.1" | ||
|
||
|
@@ -56,6 +57,9 @@ jobs: | |
- uses: pnpm/[email protected] | ||
with: | ||
version: ${{ env.PNPM_VERSION }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: ${{ env.PROTOC_VERSION }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: denoland/setup-deno@v1 | ||
|
@@ -230,6 +234,9 @@ jobs: | |
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- uses: arduino/setup-protoc@v1 | ||
with: | ||
version: ${{ env.PROTOC_VERSION }} | ||
- uses: actions/cache@v3 | ||
with: | ||
path: .venv | ||
|
@@ -244,7 +251,7 @@ jobs: | |
source .venv/bin/activate | ||
pip3 install ./typegraph | ||
deno install -A -n deno_bindgen $DENO_BINDGEN_URL | ||
OUT_DIR=target deno_bindgen -- --locked --package native | ||
OUT_DIR=target deno_bindgen -- --locked --package native -F deno | ||
which py-tg | ||
deno run -A dev/test.ts | ||
cargo test --locked --workspace --package native | ||
|
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
Oops, something went wrong.