Skip to content

Commit

Permalink
Merge #534
Browse files Browse the repository at this point in the history
534: fix image builds with update of dependencies r=reitermarkus a=olitha

Docker images fail to build in pipeline because linux image packages was updated in debian repo.

I updated to 4.19.0-14

Co-authored-by: Oliver <oliver.thallmair@mailbox.org>
  • Loading branch information
bors[bot] and olitha authored Mar 24, 2021
2 parents 4f213ba + 52be237 commit 97c4e1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
i686-unknown-freebsd: { TARGET: i686-unknown-freebsd, DYLIB: 1, STD: 1 }
x86_64-unknown-freebsd: { TARGET: x86_64-unknown-freebsd, DYLIB: 1, STD: 1 }
x86_64-unknown-netbsd: { TARGET: x86_64-unknown-netbsd, CPP: 1, DYLIB: 1, STD: 1 }
sparcv9-sun-solaris: { TARGET: sparcv9-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
x86_64-sun-solaris: { TARGET: x86_64-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
# sparcv9-sun-solaris: { TARGET: sparcv9-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
# x86_64-sun-solaris: { TARGET: x86_64-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
asmjs-unknown-emscripten: { TARGET: asmjs-unknown-emscripten, STD: 1, RUN: 1 }
# `cargo run` fails with an assertion error (https://github.com/rust-lang/cargo/issues/4689) on `wasm32-unknown-emscripten`.
wasm32-unknown-emscripten: { TARGET: wasm32-unknown-emscripten, STD: 1 }
Expand Down
4 changes: 2 additions & 2 deletions docker/freebsd-extras.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ set -euo pipefail
main() {
local arch="${1}"

local sqlite_ver=3.33.0,1 \
openssl_ver=1.1.1i,1 \
local sqlite_ver=3.34.0,1 \
openssl_ver=1.1.1j,1 \
target="${arch}-unknown-freebsd12"

local td
Expand Down
2 changes: 1 addition & 1 deletion docker/linux-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail
main() {
# arch in the rust target
local arch="${1}" \
kversion=4.19.0-11
kversion=4.19.0-14

local debsource="deb http://http.debian.net/debian/ buster main"
debsource="${debsource}\ndeb http://security.debian.org/ buster/updates main"
Expand Down

0 comments on commit 97c4e1d

Please sign in to comment.