binary tarball #118
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: binary tarball | |
on: | |
workflow_dispatch: | |
release: | |
branches: [ master ] | |
repository_dispatch: | |
types: [linux-binary-test, install-test] | |
schedule: | |
- cron: '15 15 * * *' # 3:15pm every day | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prerequisites | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ncbi-blast+ | |
echo "TERM=-$TERM-" | |
- name: download | |
run: bash -x .github/workflows/get_binary_release.sh | tee | tail -1 > dirname | |
- name: | |
run: stxtyper_v*/stxtyper -v | |
- name: run tests included with distribution | |
run: | | |
directory=$(cat dirname) | |
cd $directory | |
./test_stxtyper.sh |