Skip to content

Commit

Permalink
move
Browse files Browse the repository at this point in the history
  • Loading branch information
ilevyor committed Apr 1, 2024
1 parent 5283f58 commit 4ad4fbd
Showing 1 changed file with 58 additions and 39 deletions.
97 changes: 58 additions & 39 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,25 @@ jobs:
--exclude google-cloud-gax \
--exclude google-cloud-pubsub \
-- -Z unstable-options
- name: build
run: |
cargo build --release
- name: Checkout js repo
uses: actions/checkout@v4
with:
repository: getgrit/stdlib
path: stdlib
# - name: install-ruff
# run: |
# pip install ruff
# - name: Setup Go environment
# uses: actions/setup-go@v5.0.0
# with:
# go-version: '^1.22.0'
- name: test stdlib
working-directory: ./stdlib
run: |
../target/release/marzano patterns test
test-rust-wasm:
name: Rust wasm
timeout-minutes: 15
Expand Down Expand Up @@ -99,42 +118,42 @@ jobs:
working-directory: ./crates/wasm-bindings
run: |
wasm-pack build --target web
test-stdlib:
name: Test the standandard library
timeout-minutes: 30
strategy:
fail-fast: false
runs-on:
- nscloud-ubuntu-22.04-amd64-4x16
permissions:
contents: "read"
id-token: "write"
steps:
- name: clone code
uses: actions/checkout@v3
with:
submodules: true
- name: install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-11-16
override: true
- name: build
run: |
cargo build --release
- name: Checkout js repo
uses: actions/checkout@v4
with:
repository: getgrit/stdlib
path: stdlib
- name: install-ruff
run: |
pip install ruff
- name: Setup Go environment
uses: actions/setup-go@v5.0.0
with:
go-version: '^1.22.0'
- name: test stdlib
working-directory: ./stdlib
run: |
../target/release/marzano patterns test
# test-stdlib:
# name: Test the standandard library
# timeout-minutes: 30
# strategy:
# fail-fast: false
# runs-on:
# - nscloud-ubuntu-22.04-amd64-4x16
# permissions:
# contents: "read"
# id-token: "write"
# steps:
# - name: clone code
# uses: actions/checkout@v3
# with:
# submodules: true
# - name: install Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly-2023-11-16
# override: true
# - name: build
# run: |
# cargo build --release
# - name: Checkout js repo
# uses: actions/checkout@v4
# with:
# repository: getgrit/stdlib
# path: stdlib
# - name: install-ruff
# run: |
# pip install ruff
# - name: Setup Go environment
# uses: actions/setup-go@v5.0.0
# with:
# go-version: '^1.22.0'
# - name: test stdlib
# working-directory: ./stdlib
# run: |
# ../target/release/marzano patterns test

0 comments on commit 4ad4fbd

Please sign in to comment.