Skip to content

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jul 12, 2024
1 parent 354c535 commit 02524c3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions travis-docker-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/bin/bash

# get lucee version
LUCEE_VERSION=$(<buildVersionNumber.txt)

# build the travis request body
function build_request {
cat <<EOF
{
"request": {
"message": "Automated build for version ${LUCEE_VERSION}",
"branch":"travis-build-matrix",
"config": {
"merge_mode": "deep_merge",
"env": {
"global": {
"LUCEE_VERSION": "${LUCEE_VERSION}"
}
}
}
}
}
EOF
}
REQUEST_BODY=$(build_request)

# trigger the lucee-dockerfiles travis job for this lucee version
curl --no-progress-meter -S -m 30 -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Travis-API-Version: 3" \
-H "Authorization: token ${TRAVIS_TOKEN}" \
-d "${REQUEST_BODY}" \
https://api.travis-ci.com/repo/lucee%2Flucee-dockerfiles/requests

0 comments on commit 02524c3

Please sign in to comment.