Fix Transpose Convolutions #2118
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: build | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
pull_request: | |
branches-ignore: | |
- gh-pages | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install utilities | |
run: | | |
sudo apt-get install -y cmake wget graphviz | |
#sudo apt-get install -y build-essential checkinstall zlib1g-dev libcrypto++-dev libssl-dev | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DBUILD_SUPERBUILD=ON -DBUILD_HPC=OFF -DBUILD_TESTS=ON -DBUILD_DIST=OFF -DBUILD_RUNTIME=OFF | |
make | |
- name: Test | |
run: | | |
cd build | |
bin/unit_tests |