We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfaffdf commit b0ad306Copy full SHA for b0ad306
.github/workflows/bindings-ts.yml
@@ -30,13 +30,20 @@ jobs:
30
brew install docker
31
brew install colima
32
colima start
33
+ - name: Configure WSL
34
+ if: runner.os == 'windows'
35
+ run: |
36
+ wsl -l -v
37
+ wsl --install -d Ubuntu
38
- name: Run quickstart
39
run: |
40
docker run -d --name quickstart -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true stellar/quickstart:testing
41
+ shell: bash
42
- run: |
43
until [ "`docker inspect -f {{.State.Health.Status}} quickstart`"=="healthy" ]; do
44
sleep 0.1;
45
done;
46
47
- run: rustup update
48
- run: cargo build
49
- run: rustup target add wasm32-unknown-unknown
0 commit comments