diff --git a/.github/workflows/ci.patch.yml b/.github/workflows/ci.patch.yml index 53de5032823..5cb04b6d270 100644 --- a/.github/workflows/ci.patch.yml +++ b/.github/workflows/ci.patch.yml @@ -51,6 +51,14 @@ jobs: steps: - run: 'echo "No build required"' + install-from-lockfile-no-cache: + name: Install zebrad from lockfile without cache on ubuntu-latest + timeout-minutes: 60 + runs-on: ubuntu-latest + + steps: + - run: 'echo "No build required"' + build: name: Build stable on ubuntu-latest timeout-minutes: 60 @@ -72,4 +80,4 @@ jobs: continue-on-error: ${{ matrix.checks == 'advisories' }} steps: - - run: 'echo "No build required"' \ No newline at end of file + - run: 'echo "No build required"' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index daa5bc9e782..265ac70b4bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -196,6 +196,28 @@ jobs: working-directory: ./zebra-chain run: cargo build --verbose --no-default-features + install-from-lockfile-no-cache: + name: Install zebrad from lockfile without cache on ubuntu-latest + timeout-minutes: 60 + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3.0.0 + with: + persist-credentials: false + + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + + - name: Install + uses: actions-rs/cargo@v1.0.3 + with: + command: install + args: --locked --path ./zebrad/ zebrad + build: name: Build stable on ubuntu-latest timeout-minutes: 60