Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
65cd8ccc
Unverified
Commit
65cd8ccc
authored
6 years ago
by
Amber Brown
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add JUnit summaries to CircleCI as well as merged runs (#3704)
parent
7ca097f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.circleci/config.yml
+66
-0
66 additions, 0 deletions
.circleci/config.yml
.circleci/merge_base_branch.sh
+27
-0
27 additions, 0 deletions
.circleci/merge_base_branch.sh
changelog.d/3704.misc
+1
-0
1 addition, 0 deletions
changelog.d/3704.misc
with
94 additions
and
0 deletions
.circleci/config.yml
+
66
−
0
View file @
65cd8ccc
...
...
@@ -9,6 +9,8 @@ jobs:
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy2postgres
:
machine
:
true
steps
:
...
...
@@ -18,6 +20,34 @@ jobs:
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy2merged
:
machine
:
true
steps
:
-
checkout
-
run
:
bash .circleci/merge_base_branch.sh
-
run
:
docker pull matrixdotorg/sytest-synapsepy2
-
run
:
docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs matrixdotorg/sytest-synapsepy2
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy2postgresmerged
:
machine
:
true
steps
:
-
checkout
-
run
:
bash .circleci/merge_base_branch.sh
-
run
:
docker pull matrixdotorg/sytest-synapsepy2
-
run
:
docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs -e POSTGRES=1 matrixdotorg/sytest-synapsepy2
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy3
:
machine
:
true
steps
:
...
...
@@ -27,6 +57,8 @@ jobs:
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy3postgres
:
machine
:
true
steps
:
...
...
@@ -36,6 +68,32 @@ jobs:
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy3merged
:
machine
:
true
steps
:
-
checkout
-
run
:
bash .circleci/merge_base_branch.sh
-
run
:
docker pull matrixdotorg/sytest-synapsepy3
-
run
:
docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs hawkowl/sytestpy3
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
sytestpy3postgresmerged
:
machine
:
true
steps
:
-
checkout
-
run
:
bash .circleci/merge_base_branch.sh
-
run
:
docker pull matrixdotorg/sytest-synapsepy3
-
run
:
docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs -e POSTGRES=1 matrixdotorg/sytest-synapsepy3
-
store_artifacts
:
path
:
~/project/logs
destination
:
logs
-
store_test_results
:
path
:
logs
workflows
:
version
:
2
...
...
@@ -43,6 +101,14 @@ workflows:
jobs
:
-
sytestpy2
-
sytestpy2postgres
-
sytestpy2merged
:
filters
:
branches
:
ignore
:
/develop|master/
-
sytestpy2postgresmerged
:
filters
:
branches
:
ignore
:
/develop|master/
# Currently broken while the Python 3 port is incomplete
# - sytestpy3
# - sytestpy3postgres
This diff is collapsed.
Click to expand it.
.circleci/merge_base_branch.sh
0 → 100755
+
27
−
0
View file @
65cd8ccc
#!/usr/bin/env bash
set
-e
# CircleCI doesn't give CIRCLE_PR_NUMBER in the environment for non-forked PRs. Wonderful.
# In this case, we just need to do some ~shell magic~ to strip it out of the PULL_REQUEST URL.
echo
'export CIRCLE_PR_NUMBER="${CIRCLE_PR_NUMBER:-${CIRCLE_PULL_REQUEST##*/}}"'
>>
"
$BASH_ENV
"
source
$BASH_ENV
if
[[
-z
"
${
CIRCLE_PR_NUMBER
}
"
]]
then
echo
"Can't figure out what the PR number is!"
exit
1
fi
# Get the reference, using the GitHub API
GITBASE
=
`
curl
-q
https://api.github.com/repos/matrix-org/synapse/pulls/
${
CIRCLE_PR_NUMBER
}
| jq
-r
'.base.ref'
`
# Show what we are before
git show
-s
# Fetch and merge. If it doesn't work, it will raise due to set -e.
git fetch
-u
origin
$GITBASE
git merge
--no-edit
origin/
$GITBASE
# Show what we are after.
git show
-s
\ No newline at end of file
This diff is collapsed.
Click to expand it.
changelog.d/3704.misc
0 → 100644
+
1
−
0
View file @
65cd8ccc
CircleCI tests now run on the potential merge of a PR.
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