Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc committed Dec 13, 2024
1 parent c35329d commit 5f8165c
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
sys:
- os: ubuntu-latest-16-cores
shell: bash
- os: macos-13
shell: bash
- os: windows-latest-8-cores
shell: 'wsl-run {0}'
runs-on: ${{ matrix.sys.os }}
os: [ubuntu-latest-16-cores, macos-13, windows-latest-8-cores]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand Down Expand Up @@ -107,9 +101,9 @@ jobs:
working-directory: cmd/crates/soroban-spec-typescript/ts-tests
- run: |
npm ci --ignore-scripts
cargo run --quiet -p stellar-cli -- "keys generate root"
cargo run --quiet -p stellar-cli -- "keys fund root"
$contract_id=(cargo run --quiet -p stellar-cli -- "contract deploy --quiet --source root --wasm ../../../../target/wasm32-unknown-unknown/test-wasms/test_custom_types.wasm --ignore-checks")
cargo run --quiet -p stellar-cli -- keys generate root
cargo run --quiet -p stellar-cli -- keys fund root
$contract_id=(cargo run --quiet -p stellar-cli -- contract deploy --quiet --source root --wasm ../../../../target/wasm32-unknown-unknown/test-wasms/test_custom_types.wasm --ignore-checks"
cargo run --quiet -p stellar-cli -- contract bindings typescript --contract-id $contract_id --output-dir ./node_modules/test-custom-types --overwrite
cd ./node_modules/test-custom-types
npm install
Expand Down

0 comments on commit 5f8165c

Please sign in to comment.