Skip to content

Commit 65322e9

Browse files
authored
Add oracle to the set of produced benchbase docker images (#415)
Small tweak missed from #379
1 parent c94265d commit 65322e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/maven.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ jobs:
558558
runs-on: ubuntu-latest
559559
env:
560560
DOCKER_BUILDKIT: 1
561-
BENCHBASE_PROFILES: 'cockroachdb mariadb mysql postgres spanner phoenix sqlserver sqlite'
561+
BENCHBASE_PROFILES: 'cockroachdb mariadb mysql oracle phoenix postgres spanner sqlite sqlserver'
562562
CONTAINER_REGISTRY_NAME: ${{ secrets.ACR_LOGINURL }}
563563
services:
564564
postgres: # https://hub.docker.com/_/postgres

docker/benchbase/common-env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Try to read some values from the environment or else set some defaults.
22
# The profiles to build:
3-
export BENCHBASE_PROFILES="${BENCHBASE_PROFILES:-cockroachdb mariadb mysql postgres spanner phoenix sqlserver sqlite}"
3+
export BENCHBASE_PROFILES="${BENCHBASE_PROFILES:-cockroachdb mariadb mysql oracle phoenix postgres spanner sqlite sqlserver}"
44
# The profile to run:
55
export BENCHBASE_PROFILE="${BENCHBASE_PROFILE:-postgres}"
66
# Whether to clean the build before/after/both/never:

docker/benchbase/devcontainer/build-in-container.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Make sure any failure halts the rest of the operation.
88
set -eu -o pipefail
99

10-
BENCHBASE_PROFILES="${BENCHBASE_PROFILES:-cockroachdb mariadb mysql postgres spanner phoenix sqlserver sqlite}"
10+
BENCHBASE_PROFILES="${BENCHBASE_PROFILES:-cockroachdb mariadb mysql oracle phoenix postgres spanner sqlite sqlserver}"
1111
CLEAN_BUILD="${CLEAN_BUILD:-true}" # true, false, pre, post
1212
SKIP_TESTS="${SKIP_TESTS:-false}"
1313

0 commit comments

Comments
 (0)