Skip to content

Commit d76b94b

Browse files
committed
fix CI
From previous experiment, ncurses is available in the CI environment so it's not the problem. After some researching, I think it's the version of glibc being too old (2.24 but purescript installer needs 2.27). I see people upgrade glibc directly in Dockerfile like ENV GLIBC_VERSION 2.25-r0 but we are using a docker image from CircleCI. Let me try overwriting it by adding to `environment` variables.
1 parent 2f9050f commit d76b94b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ defaults: &defaults
55
docker:
66
- image: circleci/node:10.15-browsers
77
environment:
8+
GLIBC_VERSION: 2.27-r0
89
RTS_ARGS: +RTS -N2 -RTS
910

1011
jobs:

0 commit comments

Comments
 (0)