Skip to content

Commit

Permalink
workflow: enable full tests in automation
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Pospesel committed Jul 8, 2023
1 parent ddede0a commit 20d036c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libboost-all-dev tor
- name: Test Debug
run: |
make test-offline-debug
make test-debug
- name: Test Release
run: |
make test-offline-release
make test-release
windows:
runs-on: windows-latest
Expand All @@ -41,18 +41,19 @@ jobs:
mingw-w64-clang-x86_64-cmake
mingw-w64-clang-x86_64-clang
mingw-w64-clang-x86_64-boost
mingw-w64-clang-x86_64-tor
- name: Configure Rust
run: |
PATH=$(cygpath $USERPROFILE)/.cargo/bin:$PATH
rustup default stable-x86_64-pc-windows-gnu
- name: Test Debug
run: |
PATH=$(cygpath $USERPROFILE)/.cargo/bin:$PATH
make test-offline-debug
make test-debug
- name: Test Release
run: |
PATH=$(cygpath $USERPROFILE)/.cargo/bin:$PATH
make test-offline-release
make test-release
macos:
runs-on: macos-latest
Expand All @@ -63,10 +64,10 @@ jobs:
submodules: true
- name: Install Dependencies
run: |
brew install boost
brew install boost tor
- name: Test Debug
run: |
make test-offline-debug
make test-debug
- name: Test Release
run: |
make test-offline-release
make test-release

0 comments on commit 20d036c

Please sign in to comment.