Modify DKTK_Strat_SPECIMEN to improve the search more sample centric #1733
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 with rust and docker | |
on: | |
push: | |
workflow_dispatch: | |
pull_request: | |
schedule: | |
# Fetch new base image updates every night at 1am | |
- cron: '0 1 * * *' | |
jobs: | |
build-with-samply: | |
uses: samply/github-workflows/.github/workflows/rust.yml@main | |
with: | |
image-prefix: "samply/" | |
components: '[ "focus" ]' | |
#architectures: '[ "amd64", "arm64" ]' | |
#profile: debug | |
test-via-script: false | |
features: '[ "bbmri", "dktk", "" ]' | |
push-to: ${{ (github.ref_protected == true || github.event_name == 'workflow_dispatch') && 'dockerhub' || 'ghcr' }} | |
secrets: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |