Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wordpress
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitLab
CI
wordpress
Commits
e54ade1c
Commit
e54ade1c
authored
4 years ago
by
Erick Hitter
Browse files
Options
Downloads
Plain Diff
Merge branch 'add/pantheon' into 'main'
Migrate Pantheon build See merge request
!7
parents
c6ad02b6
bd5666cf
Branches
Branches containing commit
No related tags found
1 merge request
!7
Migrate Pantheon build
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+6
-1
6 additions, 1 deletion
README.md
pantheon/default.yml
+85
-0
85 additions, 0 deletions
pantheon/default.yml
with
91 additions
and
1 deletion
README.md
+
6
−
1
View file @
e54ade1c
# GitLab CI for WordPress
Shared
`.gitlab-ci.yml`
components for WordPress plugins and themes.
Shared
`.gitlab-ci.yml`
components for WordPress.
## Features
*
`plugins`
: PHPUnit, PHPCS, and deploys to WordPress.org.
*
`pantheon`
: deploy a site to Pantheon via their git integration.
This diff is collapsed.
Click to expand it.
pantheon/default.yml
0 → 100644
+
85
−
0
View file @
e54ade1c
stages
:
-
test
-
build
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
test-deps
:
stage
:
test
image
:
containers.ethitter.com:443/docker/images/php:7.3
before_script
:
-
'
which
ssh-agent
||
(
apt-get
update
-y
&&
apt-get
install
openssh-client
-y
)'
-
eval $(ssh-agent -s)
-
ssh-add <(echo "$GIT_SSH_PRIV_KEY")
-
git config --global user.email "$GIT_USER_EMAIL"
-
git config --global user.name "$GIT_USER_NAME"
-
mkdir -p ~/.ssh
-
echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
-
ssh-keygen -R "$PANTHEON_GIT_HOST"
-
ssh-keyscan -t rsa -p "$PANTHEON_GIT_HOST_PORT" "$PANTHEON_GIT_HOST" >> ~/.ssh/known_hosts
# TODO: add build steps here once things are converted to submodules.
# TODO: add Terminus to handle pushes and cache clearing.
script
:
-
cd ${CI_PROJECT_DIR}
-
ls -la
-
rm -rf ${CI_PROJECT_DIR}/.git/
-
rm -rf ${CI_PROJECT_DIR}/.gitignore
-
rm -rf ${CI_PROJECT_DIR}/.gitmodules
-
rm -rf ${CI_PROJECT_DIR}/.gitlab-ci.yml
-
rm -rf ${CI_PROJECT_DIR}/README.md
-
rm -rf ${CI_PROJECT_DIR}/readme.txt
-
ls -la
-
git init
-
git status -s
-
git add -A
-
git status -s
-
git commit -m "Build from $CI_COMMIT_SHORT_SHA"
-
git diff --exit-code
-
git status -s
-
git log -n
1
git-push
:
stage
:
build
image
:
containers.ethitter.com:443/docker/images/php:7.3
only
:
-
main
allow_failure
:
false
before_script
:
-
'
which
ssh-agent
||
(
apt-get
update
-y
&&
apt-get
install
openssh-client
-y
)'
-
eval $(ssh-agent -s)
-
ssh-add <(echo "$GIT_SSH_PRIV_KEY")
-
git config --global user.email "$GIT_USER_EMAIL"
-
git config --global user.name "$GIT_USER_NAME"
-
mkdir -p ~/.ssh
-
echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
-
ssh-keygen -R "$PANTHEON_GIT_HOST"
-
ssh-keyscan -t rsa -p "$PANTHEON_GIT_HOST_PORT" "$PANTHEON_GIT_HOST" >> ~/.ssh/known_hosts
# TODO: add build steps here once things are converted to submodules.
# TODO: add Terminus to handle pushes and cache clearing.
script
:
-
cd ${CI_PROJECT_DIR}
-
ls -la
-
rm -rf ${CI_PROJECT_DIR}/.git/
-
rm -rf ${CI_PROJECT_DIR}/.gitignore
-
rm -rf ${CI_PROJECT_DIR}/.gitmodules
-
rm -rf ${CI_PROJECT_DIR}/.gitlab-ci.yml
-
rm -rf ${CI_PROJECT_DIR}/README.md
-
rm -rf ${CI_PROJECT_DIR}/readme.txt
-
ls -la
-
git init
-
git remote add pantheon "$PANTHEON_GIT_REMOTE"
-
git status -s
-
git add -A
-
git status -s
-
git commit -m "Build from $CI_COMMIT_SHORT_SHA"
-
git diff --exit-code
-
git status -s
-
git log -n
1
-
git push --force pantheon master
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment