Skip to content

Commit

Permalink
add WSL
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc committed Dec 10, 2024
1 parent cfaffdf commit b0ad306
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,20 @@ jobs:
brew install docker
brew install colima
colima start
- name: Configure WSL
if: runner.os == 'windows'
run: |
wsl -l -v
wsl --install -d Ubuntu
- name: Run quickstart
run: |
docker run -d --name quickstart -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true stellar/quickstart:testing
shell: bash
- run: |
until [ "`docker inspect -f {{.State.Health.Status}} quickstart`"=="healthy" ]; do
sleep 0.1;
done;
shell: bash
- run: rustup update
- run: cargo build
- run: rustup target add wasm32-unknown-unknown
Expand Down

0 comments on commit b0ad306

Please sign in to comment.