general: bump simplex to 0.0.6 #290
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Build and test (matrix, non-regtest) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: ["1.91.0", "stable"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust ${{ matrix.toolchain }} | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: Install Simplex | |
| run: | | |
| export SIMPLEX_DIR="$HOME/.simplex" | |
| curl -L https://raw.githubusercontent.com/BlockstreamResearch/smplx/master/simplexup/install | bash | |
| echo "$SIMPLEX_DIR/bin" >> "$GITHUB_PATH" | |
| "$SIMPLEX_DIR/bin/simplexup" --install v0.0.6 --platform linux --arch amd64 | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Generate contract artifacts | |
| working-directory: crates/contracts | |
| run: simplex build | |
| - name: Build | |
| run: cargo build --workspace --all-features --verbose | |
| - name: Test (excluding regtest-dependent contracts) | |
| run: cargo test --workspace --all-features --lib --no-fail-fast --verbose | |
| contracts-regtest: | |
| name: Contracts regtest tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust (stable) | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Install Simplex | |
| run: | | |
| export SIMPLEX_DIR="$HOME/.simplex" | |
| curl -L https://raw.githubusercontent.com/BlockstreamResearch/smplx/master/simplexup/install | bash | |
| echo "$SIMPLEX_DIR/bin" >> "$GITHUB_PATH" | |
| "$SIMPLEX_DIR/bin/simplexup" --install v0.0.6 --platform linux --arch amd64 | |
| - name: Cache cargo | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Generate contract artifacts | |
| working-directory: crates/contracts | |
| run: simplex build | |
| - name: Setup regtest binaries | |
| run: | | |
| set -euo pipefail | |
| BIN_DIR="$RUNNER_TEMP/lwk-bin" | |
| mkdir -p "$BIN_DIR" | |
| cd "$BIN_DIR" | |
| ELECTRS_FILENAME="electrs_linux_esplora_027e38d3ebc2f85b28ae76f8f3448438ee4fc7b1_liquid.zip" | |
| ELECTRS_SHA256="a63a314c16bc6642fc060bbc19bd1d54ebf86b42188ff2a11c705177c1eb22f7" | |
| wget "https://github.com/RCasatta/electrsd/releases/download/electrs_releases/${ELECTRS_FILENAME}" | |
| echo "${ELECTRS_SHA256} ${ELECTRS_FILENAME}" | sha256sum -c - | |
| unzip -o "${ELECTRS_FILENAME}" | |
| chmod +x "${BIN_DIR}/electrs" | |
| ELEMENTSD_VERSION="23.3.1" | |
| ELEMENTSD_FILENAME="elements-${ELEMENTSD_VERSION}-x86_64-linux-gnu.tar.gz" | |
| ELEMENTSD_SHA256="864e3a8240137c4e948ecae7c526ccb363771351ea68737a14c682025d5fedaa" | |
| curl -Ls "https://github.com/ElementsProject/elements/releases/download/elements-${ELEMENTSD_VERSION}/${ELEMENTSD_FILENAME}" -o "${ELEMENTSD_FILENAME}" | |
| echo "${ELEMENTSD_SHA256} ${ELEMENTSD_FILENAME}" | sha256sum -c - | |
| tar -xzf "${ELEMENTSD_FILENAME}" | |
| chmod +x "${BIN_DIR}/elements-${ELEMENTSD_VERSION}/bin/elementsd" | |
| echo "ELECTRS_LIQUID_EXEC=${BIN_DIR}/electrs" >> "$GITHUB_ENV" | |
| echo "ELEMENTSD_EXEC=${BIN_DIR}/elements-${ELEMENTSD_VERSION}/bin/elementsd" >> "$GITHUB_ENV" | |
| - name: Test contracts (regtest) | |
| run: simplex test |