Skip to content

Commit b0ad306

Browse files
committed
add WSL
1 parent cfaffdf commit b0ad306

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/bindings-ts.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,20 @@ jobs:
3030
brew install docker
3131
brew install colima
3232
colima start
33+
- name: Configure WSL
34+
if: runner.os == 'windows'
35+
run: |
36+
wsl -l -v
37+
wsl --install -d Ubuntu
3338
- name: Run quickstart
3439
run: |
3540
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
3642
- run: |
3743
until [ "`docker inspect -f {{.State.Health.Status}} quickstart`"=="healthy" ]; do
3844
sleep 0.1;
3945
done;
46+
shell: bash
4047
- run: rustup update
4148
- run: cargo build
4249
- run: rustup target add wasm32-unknown-unknown

0 commit comments

Comments
 (0)