File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ on: [push, pull_request]
33
44env :
55 APT_DEPS : libzstd-dev samtools tabix libhts-dev pigz python3-pip libcurl4-openssl-dev
6- BREW_DEPS : python@3.8 zstd samtools pigz coreutils
6+ BREW_DEPS : python@3.8 zstd samtools pigz coreutils sqlite
77 PIP_DEPS : pytest pytest-xdist
88
99jobs :
@@ -126,12 +126,6 @@ jobs:
126126 for dep in $BREW_DEPS ; do
127127 brew install $dep || brew upgrade $dep
128128 done
129-
130- # FIXME 2022-12-27: pin sqlite 3.39.4 due to query plan regression in 3.40.0
131- # https://sqlite.org/forum/forumpost/07b36e3899a9ae21
132- wget https://raw.githubusercontent.com/Homebrew/homebrew-core/fc08979e0cc7c580a2feba5447d9a518dc518826/Formula/sqlite.rb
133- brew reinstall -s sqlite.rb
134-
135129 /usr/local/bin/pip3 install $PIP_DEPS
136130 - name : rust toolchain
137131 uses : actions-rs/toolchain@v1
Original file line number Diff line number Diff line change 44FROM centos:7 as builder
55
66ARG CMAKE_VERSION=3.17.3
7- ARG SQLITE_VERSION=3390400
7+ ARG SQLITE_VERSION=3400100
88ARG ZSTD_VERSION=1.5.2
99ARG CPU_ARCH=ivybridge
1010ENV CFLAGS="-march=${CPU_ARCH} -O3"
You can’t perform that action at this time.
0 commit comments