Skip to content

Commit 45fd05b

Browse files
committed
Force architecture to work around back fdb package
1 parent 7c75962 commit 45fd05b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ I am not using this in a production-like context, but I have exercised the code
88

99
### Supported FoundationDB versions
1010

11-
Currently supports 5.2.x through 7.1.x. By default, this package builds assuming that you have installed the latest supported version of FoundationDB. If not, you need to set the appropriate flag when building the library. For example, if you installed FoundationDB 6.0.x, you need to build with
11+
Currently supports 5.2.x through 7.3.x. By default, this package builds assuming that you have installed the latest supported version of FoundationDB. If not, you need to set the appropriate flag when building the library. For example, if you installed FoundationDB 6.0.x, you need to build with
1212

1313
`stack build --flag foundationdb-haskell:fdb-version-600`
1414

ci/install-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FDB_VER=${1}
77
sudo apt install python2
88
wget https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-clients_${FDB_VER}-1_amd64.deb
99
wget https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-server_${FDB_VER}-1_amd64.deb
10-
sudo dpkg -i foundationdb-clients_${FDB_VER}-1_amd64.deb
10+
sudo dpkg --force-architecture -i foundationdb-clients_${FDB_VER}-1_amd64.deb
1111
# 6.3.x seems to require us to make this directory
1212
sudo mkdir -p /var/lib/foundationdb/data
13-
sudo dpkg -i foundationdb-server_${FDB_VER}-1_amd64.deb
13+
sudo dpkg --force-architecture -i foundationdb-server_${FDB_VER}-1_amd64.deb
1414
sudo apt-get install c2hs

0 commit comments

Comments
 (0)