Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pypy.org
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PyPy
pypy.org
Merge requests
!21
add a gitlab-ci runner
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add a gitlab-ci runner
branch/preview
into
branch/default
Overview
8
Commits
4
Pipelines
5
Changes
2
1 unresolved thread
Hide all comments
Merged
Matti Picus
requested to merge
branch/preview
into
branch/default
4 years ago
Overview
8
Commits
4
Pipelines
5
Changes
2
1 unresolved thread
Hide all comments
Expand
Fixes to
#9
0
0
Merge request reports
Compare
branch/default
version 3
60a7c519
4 years ago
version 2
6dfc8b4d
4 years ago
version 1
315aeefa
4 years ago
branch/default (base)
and
latest version
latest version
52c3b68a
4 commits,
4 years ago
version 3
60a7c519
3 commits,
4 years ago
version 2
6dfc8b4d
2 commits,
4 years ago
version 1
315aeefa
1 commit,
4 years ago
2 files
+
36
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
0 → 100644
+
31
−
0
Options
stages
:
-
build
-
deploy
html-build
:
image
:
registry.heptapod.net/pypy/pypy/ci:v1
stage
:
build
script
:
-
make build
#deploy-test:
# image: registry.heptapod.net/octobus/ci-dockerfiles/ci-website
# stage: deploy
# script:
# - make build # use artefact eventually
# - netlify deploy --site=056ee9b4-122d-4b02-bf62-5a2fc9776196 --auth="$NETLIFY_AUTH_TOKEN" --dir="public"
deploy
:
# On a merge, regenerate the content and commit it to the repo
image
:
registry.heptapod.net/pypy/pypy/ci:v1
stage
:
deploy
only
:
-
branch/default
script
:
-
set -ex
-
make build
-
hg add public
-
hg commit public
-
hg push
Loading