mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2025-08-06 03:46:57 +02:00
feat: build docker w/ Oracle's libmysqlclient (#1695)
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
Some checks failed
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
instead of libmariadb as we still need the Oracle client's seamless TLS support (for now) Closes STOR-250
This commit is contained in:
parent
624eced1e9
commit
569e510083
@ -309,7 +309,10 @@ jobs:
|
||||
- write-version
|
||||
- run:
|
||||
name: Build MySQL Docker image
|
||||
command: docker build -t app:build --build-arg DATABASE_BACKEND=mysql .
|
||||
command: >
|
||||
docker build -t app:build
|
||||
--build-arg DATABASE_BACKEND=mysql
|
||||
.
|
||||
no_output_timeout: 30m
|
||||
# save the built docker container into CircleCI's cache. This is
|
||||
# required since Workflows do not have the same remote docker instance.
|
||||
@ -341,7 +344,12 @@ jobs:
|
||||
- write-version
|
||||
- run:
|
||||
name: Build Spanner Docker image
|
||||
command: docker build -t app:build --build-arg DATABASE_BACKEND=spanner .
|
||||
# Build w/ the Oracle libmysqlclient-dev for TLS support
|
||||
command: >
|
||||
docker build -t app:build
|
||||
--build-arg DATABASE_BACKEND=spanner
|
||||
--build-arg MYSQLCLIENT_PKG=libmysqlclient-dev
|
||||
.
|
||||
no_output_timeout: 30m
|
||||
# save the built docker container into CircleCI's cache. This is
|
||||
# required since Workflows do not have the same remote docker instance.
|
||||
|
Loading…
Reference in New Issue
Block a user