Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtropets committed Jan 24, 2025
1 parent 499d1bc commit dbc624f
Showing 1 changed file with 25 additions and 23 deletions.
48 changes: 25 additions & 23 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,30 +144,32 @@ jobs:
shell: bash
if: ${{ matrix.platform.name != 'snp' && matrix.platform.os == 'ubuntu' }}

- name: "Test ${{ matrix.platform.name }}"
run: |
set -ex
cd build
rm -rf /github/home/.cache
mkdir -p /github/home/.cache
export ASAN_SYMBOLIZER_PATH=$(realpath /usr/bin/llvm-symbolizer-15)
# Unit tests
./tests.sh --output-on-failure -L unit -j$(nproc --all)
./tests.sh --timeout 360 --output-on-failure -LE "benchmark|unit"
shell: bash
if: "${{ matrix.platform.name != 'snp' }}"
# TODO client_protocols + lts

- name: "Upload logs for ${{ matrix.platform.name }}"
uses: actions/upload-artifact@v4
with:
name: logs-${{ matrix.platform.name }}
path: |
build/workspace/*/*.config.json
build/workspace/*/out
build/workspace/*/err
build/workspace/*.ledger/*
if-no-files-found: ignore
if: success() || failure()
# - name: "Test ${{ matrix.platform.name }}"
# run: |
# set -ex
# cd build
# rm -rf /github/home/.cache
# mkdir -p /github/home/.cache
# export ASAN_SYMBOLIZER_PATH=$(realpath /usr/bin/llvm-symbolizer-15)
# # Unit tests
# ./tests.sh --output-on-failure -L unit -j$(nproc --all)
# ./tests.sh --timeout 360 --output-on-failure -LE "benchmark|unit"
# shell: bash
# if: "${{ matrix.platform.name != 'snp' }}"

# - name: "Upload logs for ${{ matrix.platform.name }}"
# uses: actions/upload-artifact@v4
# with:
# name: logs-${{ matrix.platform.name }}
# path: |
# build/workspace/*/*.config.json
# build/workspace/*/out
# build/workspace/*/err
# build/workspace/*.ledger/*
# if-no-files-found: ignore
# if: success() || failure()

- name: "Make .deb Package"
id: make_deb
Expand Down

0 comments on commit dbc624f

Please sign in to comment.