Skip to content

Commit 2fad47e

Browse files
committed
Merge remote-tracking branch 'origin/master' into ane-2484-vendor-bins
2 parents 727bf26 + 51add54 commit 2fad47e

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
mkdir vendor-bins
9797
./vendor_download.sh
9898
env:
99-
GITHUB_TOKEN: ${{ secrets.BASIS_ACCESS_TOKEN }}
99+
GITHUB_TOKEN: ${{ secrets.ANALYSIS_VENDOR_DOWNLOAD_TOKEN }}
100100

101101
- name: Build
102102
env:

.github/workflows/build-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
mkdir vendor-bins
168168
./vendor_download.sh
169169
env:
170-
GITHUB_TOKEN: ${{ secrets.BASIS_ACCESS_TOKEN }}
170+
GITHUB_TOKEN: ${{ secrets.ANALYSIS_VENDOR_DOWNLOAD_TOKEN }}
171171

172172
- name: Build and Unit Test (Linux ARM)
173173
if: ${{ matrix.os == 'LinuxARM' }}

.github/workflows/integrations-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
mkdir vendor-bins
104104
./vendor_download.sh
105105
env:
106-
GITHUB_TOKEN: ${{ secrets.BASIS_ACCESS_TOKEN }}
106+
GITHUB_TOKEN: ${{ secrets.ANALYSIS_VENDOR_DOWNLOAD_TOKEN }}
107107

108108
- name: Build
109109
env:

shell.nix

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
gmp_static =
1010
gmp.overrideAttrs (old: { dontDisableStatic = true; });
1111
lzma_static =
12-
lzma.overrideAttrs (old: { dontDisableStatic = true; });
12+
xz.overrideAttrs (old: { dontDisableStatic = true; });
1313
in mkShell {
1414
nativeBuildInputs = [
1515
cabal-install
@@ -19,15 +19,18 @@
1919
haskellPackages.cabal-fmt
2020
hlint
2121
zlib.dev
22-
zlib.static
2322
git
24-
glibc.dev
25-
glibc.static
23+
pkg-config
24+
xz
2625
bzip2_static
2726
bzip2_static.dev
2827
libffi_static.dev
2928
gmp_static.dev
3029
lzma_static.dev
30+
] ++ lib.optionals stdenv.isLinux [
31+
zlib.static
32+
glibc.dev
33+
glibc.static
3134
];
3235
shellHook = ''
3336
export LANG=C.UTF-8

0 commit comments

Comments
 (0)