Skip to content

Commit ea5036e

Browse files
committed
Small fixes
1 parent fb05511 commit ea5036e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/test.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,31 @@ on:
66
# the soroban CLI source code to compile and run from system test
77
# refers to checked out source of current GitHub ref context or branch
88
stellar-cli-ref:
9+
required: false
910
type: string
10-
stellar-cli-branch:
11+
stellar-cli-version:
12+
required: false
1113
type: string
12-
default: main
1314

1415
# example filter for all combos of one scenario outline: ^TestDappDevelop$/^DApp developer compiles, deploys and invokes a contract.*$
1516
# each row in example data for a scenario outline is postfixed with '#01', '#02', example:
1617
# TestDappDevelop/DApp developer compiles, deploys and invokes a contract#01
1718
test-filter:
19+
required: false
1820
type: string
1921
default: ""
2022

2123
# set the version of js-stellar-sdk to use, need to choose one of either
2224
# resolution options, using npm release or a gh ref:
2325
# option #1, set the version of stellar-sdk based on a npm release version
2426
js-stellar-sdk-npm-version:
27+
required: false
2528
type: string
2629
default: 12.2.0
2730

2831
# triggers system test to log out details from test steps
2932
verbose-output:
33+
required: false
3034
type: boolean
3135
default: true
3236

@@ -107,6 +111,8 @@ jobs:
107111
--health-retries 50
108112
steps:
109113
- uses: actions/checkout@v4
114+
with:
115+
repository: "https://github.com/stellar/system-test"
110116
- uses: stellar/actions/rust-cache@main
111117
- run: sudo apt update && sudo apt install -y expect libudev-dev libdbus-1-dev
112118
- run: rustup update
@@ -116,7 +122,9 @@ jobs:
116122
- run: rustup target add wasm32-unknown-unknown --toolchain 1.81-x86_64-unknown-linux-gnu
117123
- run: cargo install --git https://github.com/stellar/stellar-cli soroban-cli --rev ${{ inputs.stellar-cli-ref }}
118124
if: ${{ inputs.stellar-cli-ref != '' }}
119-
- run: cargo install --git https://github.com/stellar/stellar-cli soroban-cli --branch ${{ inputs.stellar-cli-branch }}
125+
- uses: stellar/stellar-cli
126+
with:
127+
version: ${{ inputs.stellar-cli-version }}
120128
if: ${{ inputs.stellar-cli-ref == '' }}
121129
- run: go mod download
122130
- run: |

0 commit comments

Comments
 (0)