Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc committed Mar 11, 2025
1 parent fb05511 commit bc87fd9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,31 @@ on:
# the soroban CLI source code to compile and run from system test
# refers to checked out source of current GitHub ref context or branch
stellar-cli-ref:
required: false
type: string
stellar-cli-branch:
stellar-cli-version:
required: false
type: string
default: main

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

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

# triggers system test to log out details from test steps
verbose-output:
required: false
type: boolean
default: true

Expand Down Expand Up @@ -107,6 +111,8 @@ jobs:
--health-retries 50
steps:
- uses: actions/checkout@v4
with:
repository: "https://github.com/stellar/system-test"
- uses: stellar/actions/rust-cache@main
- run: sudo apt update && sudo apt install -y expect libudev-dev libdbus-1-dev
- run: rustup update
Expand All @@ -116,7 +122,9 @@ jobs:
- run: rustup target add wasm32-unknown-unknown --toolchain 1.81-x86_64-unknown-linux-gnu
- run: cargo install --git https://github.com/stellar/stellar-cli soroban-cli --rev ${{ inputs.stellar-cli-ref }}
if: ${{ inputs.stellar-cli-ref != '' }}
- run: cargo install --git https://github.com/stellar/stellar-cli soroban-cli --branch ${{ inputs.stellar-cli-branch }}
- uses: stellar/stellar-cli@main
with:
version: ${{ inputs.stellar-cli-version }}
if: ${{ inputs.stellar-cli-ref == '' }}
- run: go mod download
- run: |
Expand Down

0 comments on commit bc87fd9

Please sign in to comment.