Test #140
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: Test | |
on: | |
workflow_dispatch: | |
jobs: | |
build-linux: | |
name: Build and test linux | |
runs-on: ubuntu-22.04 | |
env: | |
RELEASE_OS: linux | |
steps: | |
- name: checkout branch | |
uses: actions/checkout@master | |
- name: Setup environment | |
id: setup | |
run: echo ::set-output name=RELEASE_VERSION::${GITHUB_REF##*/} | |
- name: make | |
run: | | |
mkdir build && cd build && cmake .. -DZLIBNG=ON -DBUILD_FUNCTESTING=ON -DNO_HTSLIB=ON && make && make install && cd .. | |
- name: Functional testing | |
run: | | |
cd build && make test |