Skip to content

Improve version message when compiled from release archive #21

Improve version message when compiled from release archive

Improve version message when compiled from release archive #21

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nim-version: ["2.2.10", "1.6.6"]
steps:
- uses: actions/checkout@v5
- run: sudo apt-get update && sudo apt-get install libhts-dev bcftools
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim-version }}
- run: nimble install -y
- run: nimble test
mac:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
nim-version: ["2.2.10", "1.6.6"]
steps:
- uses: actions/checkout@v5
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim-version }}
- run: brew install htslib bcftools
- run: sed -i "" -e "s/nim c/nim c --passL:-Wl,-rpath,\/opt\/homebrew\/opt\/htslib\/lib/" slivar.nimble
- run: sed -i "" -e "s/nim c/nim c --passL:-Wl,-rpath,\/opt\/homebrew\/opt\/htslib\/lib/" tests/functional-tests.sh
- run: nimble install -y
- run: nimble test