Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Maunium
synapse
Commits
614e6d51
Unverified
Commit
614e6d51
authored
6 years ago
by
Amber Brown
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Dockerised sytest (#3660)
parent
0bdc3625
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.circleci/config.yml
+48
-0
48 additions, 0 deletions
.circleci/config.yml
.dockerignore
+3
-0
3 additions, 0 deletions
.dockerignore
MANIFEST.in
+1
-0
1 addition, 0 deletions
MANIFEST.in
changelog.d/3660.misc
+1
-0
1 addition, 0 deletions
changelog.d/3660.misc
with
53 additions
and
0 deletions
.circleci/config.yml
0 → 100644
+
48
−
0
View file @
614e6d51
version
:
2
jobs
:
sytestpy2
:
machine
:
true
steps
:
-
checkout
-
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
sytestpy2postgres
:
machine
:
true
steps
:
-
checkout
-
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
sytestpy3
:
machine
:
true
steps
:
-
checkout
-
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
sytestpy3postgres
:
machine
:
true
steps
:
-
checkout
-
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
workflows
:
version
:
2
build
:
jobs
:
-
sytestpy2
-
sytestpy2postgres
# Currently broken while the Python 3 port is incomplete
# - sytestpy3
# - sytestpy3postgres
This diff is collapsed.
Click to expand it.
.dockerignore
+
3
−
0
View file @
614e6d51
...
...
@@ -3,3 +3,6 @@ Dockerfile
.gitignore
demo/etc
tox.ini
synctl
.git/*
.tox/*
This diff is collapsed.
Click to expand it.
MANIFEST.in
+
1
−
0
View file @
614e6d51
...
...
@@ -36,3 +36,4 @@ recursive-include changelog.d *
prune .github
prune demo/etc
prune docker
prune .circleci
This diff is collapsed.
Click to expand it.
changelog.d/3660.misc
0 → 100644
+
1
−
0
View file @
614e6d51
Sytests can now be run inside a Docker container.
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