Skip to content

Commit

Permalink
Merge pull request #87 from trilogy-libraries/add-default-values-to-c…
Browse files Browse the repository at this point in the history
…ibuild

add default values to ci build
  • Loading branch information
matthewd committed Jun 7, 2023
2 parents 7c880ef + 7799be4 commit 40bd18d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ trap cleanup EXIT

export CI_MODE=true

if [ -z "$MYSQL_VERSION" ]; then export MYSQL_VERSION=8 ; fi
if [ -z "$DISTRIBUTION" ]; then export DISTRIBUTION=debian:buster ; fi
if [ -z "$RUBY_VERSION" ]; then export RUBY_VERSION=3.2 ; fi

DISTRIBUTION_SLUG="$(echo "$DISTRIBUTION" | awk '{ gsub(":", "_") ; print $0 }')"
export DISTRIBUTION_SLUG

Expand Down

0 comments on commit 40bd18d

Please sign in to comment.