Skip to content

Commit ba82cb9

Browse files
committed
Revert "bump sqlite"
This reverts commit 9f128db.
1 parent 9f128db commit ba82cb9

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, pull_request]
33

44
env:
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 sqlite
6+
BREW_DEPS: python@3.8 zstd samtools pigz coreutils
77
PIP_DEPS: pytest pytest-xdist
88

99
jobs:
@@ -126,6 +126,12 @@ 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+
129135
/usr/local/bin/pip3 install $PIP_DEPS
130136
- name: rust toolchain
131137
uses: actions-rs/toolchain@v1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM centos:7 as builder
55

66
ARG CMAKE_VERSION=3.17.3
7-
ARG SQLITE_VERSION=3400100
7+
ARG SQLITE_VERSION=3390400
88
ARG ZSTD_VERSION=1.5.2
99
ARG CPU_ARCH=ivybridge
1010
ENV CFLAGS="-march=${CPU_ARCH} -O3"

0 commit comments

Comments
 (0)