Bencode external references incorrect tag #57
Workflow file for this run
This file contains 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: macOS | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install build dependencies | |
run: | | |
brew install cmake | |
brew install gcc | |
brew install openssl | |
brew install autoconf | |
brew install automake | |
brew install libtool | |
brew install nasm | |
- name: Configure | |
run: | | |
cmake -G "Unix Makefiles" -S . -B cmake-build-debug \ | |
-DCMAKE_CXX_COMPILER=g++-11 \ | |
-DCMAKE_C_COMPILER=gcc-11 \ | |
-DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl@1.1/1.1.1l \ | |
-DCMAKE_BUILD_TYPE=Debug \ | |
-DTORRENTTOOLS_BUILD_TESTS=ON \ | |
-DTORRENTTOOLS_TBB=OFF \ | |
-DDOTTORRENT_MB_CRYPTO_LIB=isal \ | |
-DDOTTORRENT_CRYPTO_LIB=openssl | |
- name: Build | |
run: cmake --build cmake-build-debug | |
- name: Save build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: torrenttools-binaries-macos | |
path: | | |
cmake-build-debug | |
!cmake-build-debug/_deps | |
retention-days: 1 | |
test: | |
name: Test | |
needs: Build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install runtime dependencies | |
run: | | |
brew install cmake | |
brew install gcc | |
brew install openssl | |
- name: Download build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: torrenttools-binaries-macos | |
path: cmake-build-debug | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Test | |
run: | | |
chmod +x cmake-build-debug/tests/torrenttools-tests | |
cd cmake-build-debug && ctest |