Skip to content

Commit 71bba96

Browse files
committed
try 8.4-lts
1 parent 473a453 commit 71bba96

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/mozcloud-publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
push:
77
branches:
88
- master
9+
- chore/libmysqlclient-8.4
910
tags:
1011
- '**'
1112
workflow_dispatch: {}
@@ -36,7 +37,7 @@ jobs:
3637
# This presently remains for the time being to simplify deploys by maintaining `image_name: syncstorage-rs`.
3738
# Historical context: <https://github.com/mozilla-services/syncstorage-rs/pull/1306>
3839
build-and-push-syncstorage-rs:
39-
needs: check
40+
#needs: check
4041
permissions:
4142
contents: read
4243
id-token: write

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ RUN apt-get -q update && \
2424
MYSQL_PKG="$MYSQLCLIENT_PKG"; \
2525
if [ "$MYSQLCLIENT_PKG" = libmysqlclient-dev ] ; then \
2626
# First install gnupg and setup MySQL repo
27-
# Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.0/en/checking-gpg-signature.html
27+
# Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.4/en/checking-gpg-signature.html
2828
apt-get -q install -y --no-install-recommends gnupg ca-certificates && \
29-
echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.0" >> /etc/apt/sources.list && \
29+
echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts" >> /etc/apt/sources.list && \
3030
# Fetch and install the MySQL public key
3131
gpg --batch --keyserver hkp://keyserver.ubuntu.com --recv-keys A8D3785C && \
3232
gpg --batch --armor --export A8D3785C | tee /etc/apt/trusted.gpg.d/mysql.asc && \
@@ -117,9 +117,9 @@ RUN apt-get -q update && \
117117
if [ "$MYSQLCLIENT_PKG" = libmysqlclient-dev ] ; then \
118118
# First install gnupg and setup MySQL repo
119119
apt-get install -y --no-install-recommends gnupg ca-certificates wget && \
120-
echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.0" >> /etc/apt/sources.list && \
120+
echo "deb https://repo.mysql.com/apt/debian/ trixie mysql-8.4-lts" >> /etc/apt/sources.list && \
121121
# Fetch and install the MySQL public key
122-
# Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.0/en/checking-gpg-signature.html
122+
# Key ID A8D3785C from https://dev.mysql.com/doc/refman/8.4/en/checking-gpg-signature.html
123123
gpg --batch --keyserver hkp://keyserver.ubuntu.com --recv-keys A8D3785C && \
124124
gpg --batch --armor --export A8D3785C | tee /etc/apt/trusted.gpg.d/mysql.asc && \
125125
apt-get -q update ; \

0 commit comments

Comments
 (0)