mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
echo debug
This commit is contained in:
parent
e486ed0770
commit
f8b9a4f4b6
1 changed files with 17 additions and 0 deletions
|
@ -1,6 +1,23 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Ensure the github oauth token is set
|
# Ensure the github oauth token is set
|
||||||
|
echo docker run \
|
||||||
|
--user $(id -u):$(id -g) \
|
||||||
|
--volume ${WORKING_DIR}:/data \
|
||||||
|
--volume ${COMPOSER_HOME}:/composer/ \
|
||||||
|
--workdir /data \
|
||||||
|
phpbb/build${IMAGES_TAG} sh -c "COMPOSER_HOME=/composer php composer.phar config -g github-oauth.github.com ${GITHUB_TOKEN}"
|
||||||
|
|
||||||
|
echo docker run \
|
||||||
|
--user $(id -u):$(id -g) \
|
||||||
|
--volume ${WORKING_DIR}:/data \
|
||||||
|
--volume ${COMPOSER_HOME}:/composer/ \
|
||||||
|
--workdir /data \
|
||||||
|
phpbb/build${IMAGES_TAG} sh -c '
|
||||||
|
git config user.email "no-reply@phpbb.com" &&
|
||||||
|
git config user.name "phpBB CI" &&
|
||||||
|
cd phpBB &&
|
||||||
|
COMPOSER_HOME=/composer php ../composer.phar install --dev'
|
||||||
docker run \
|
docker run \
|
||||||
--user $(id -u):$(id -g) \
|
--user $(id -u):$(id -g) \
|
||||||
--volume ${WORKING_DIR}:/data \
|
--volume ${WORKING_DIR}:/data \
|
||||||
|
|
Loading…
Add table
Reference in a new issue