diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5036194be..dd0943a83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,33 +55,33 @@ jobs: # - name: Run cargo fmt # run: cargo fmt --all -- --check - test_release: - runs-on: ubuntu-latest - name: Test in release mode - strategy: - matrix: - cargo-args: ['', '--features fixed-rows-to-discard'] - env: - # Run all tests with multicore-SDR enabled. - FIL_PROOFS_USE_MULTICORE_SDR: true - steps: - - uses: actions/checkout@v4 - - name: Install required packages - run: sudo apt install --no-install-recommends --yes ocl-icd-opencl-dev libhwloc-dev - - - name: Download the proof params - uses: ./.github/actions/proof-params-download - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Test in release profile - run: | - cargo test --verbose --release --workspace --all-targets ${{ matrix.cargo-args }} - #cargo test --release -p storage-proofs-porep --features isolated-testing ${{ matrix.cargo-args }} -- --test-threads=1 - cargo test --release -p storage-proofs-porep --features isolated-testing ${{ matrix.cargo-args }} - # Some `storage-proofs-update` tests need to run sequentially due to - # their high memory usage. - cargo test --release -p storage-proofs-update --features isolated-testing ${{ matrix.cargo-args }} -- --test-threads=1 + #test_release: + # runs-on: ubuntu-latest + # name: Test in release mode + # strategy: + # matrix: + # cargo-args: ['', '--features fixed-rows-to-discard'] + # env: + # # Run all tests with multicore-SDR enabled. + # FIL_PROOFS_USE_MULTICORE_SDR: true + # steps: + # - uses: actions/checkout@v4 + # - name: Install required packages + # run: sudo apt install --no-install-recommends --yes ocl-icd-opencl-dev libhwloc-dev + # + # - name: Download the proof params + # uses: ./.github/actions/proof-params-download + # with: + # github-token: ${{ secrets.GITHUB_TOKEN }} + # + # - name: Test in release profile + # run: | + # cargo test --verbose --release --workspace --all-targets ${{ matrix.cargo-args }} + # #cargo test --release -p storage-proofs-porep --features isolated-testing ${{ matrix.cargo-args }} -- --test-threads=1 + # cargo test --release -p storage-proofs-porep --features isolated-testing ${{ matrix.cargo-args }} + # # Some `storage-proofs-update` tests need to run sequentially due to + # # their high memory usage. + # cargo test --release -p storage-proofs-update --features isolated-testing ${{ matrix.cargo-args }} -- --test-threads=1 #test_ignored_release: # runs-on: ubuntu-latest