Update workflow syntax #2
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: | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Installing GCC | ||
run: 'apt-get update && apt-get install -y gcc g++' | ||
- name: Installing Boost | ||
run: 'apt-get install -y libboost-all-dev' | ||
- name: Install CMAKE | ||
run: 'pip install cmake --upgrade' | ||
- name: Get NLOpt | ||
run: 'git clone https://github.com/stevengj/nlopt.git' | ||
- name: Create NLOpt folders | ||
run: 'cd nlopt && mkdir build' | ||
- name: Install NLOpt | ||
run: 'cd nlopt/build/ && cmake .. && make && sudo make install' | ||
- name: Install pyscicone | ||
run: 'cd pyscicone && pip install -e .[test]' | ||
- name: Test pyscicone | ||
run: 'cd pyscicone && python3 -m pytest -s' | ||
- name: Creating Debug Build Folder | ||
run: 'mkdir debug' | ||
- name: Running CMAKE | ||
run: 'cd debug && cmake -DCMAKE_BUILD_TYPE=Debug ../scicone/' | ||
- name: Running MAKE | ||
run: 'cd debug && make VERBOSE=1' | ||
- name: Unit Tests (Debug) | ||
no_output_timeout: 60m | ||
Check failure on line 53 in .github/workflows/build.yml GitHub Actions / buildInvalid workflow file
|
||
run: 'cd debug && ./tests 0' | ||
- name: Creating Release Build Folder | ||
run: 'mkdir release' | ||
- name: Running CMAKE | ||
run: 'cd release && cmake -DCMAKE_BUILD_TYPE=Release ../scicone/' | ||
- name: Running MAKE | ||
run: 'cd release && make VERBOSE=1' | ||
- name: Unit Tests (Release) | ||
no_output_timeout: 60m | ||
run: 'cd debug && ./tests 0' |