Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
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
elixxir
client
Commits
475661d8
Commit
475661d8
authored
2 years ago
by
Sydney Anne Erickson
Browse files
Options
Downloads
Patches
Plain Diff
Add a docstring to the CI job
parent
e504835f
No related branches found
No related tags found
2 merge requests
!510
Release
,
!268
Attempt to convince pkg.go.dev to update docs on release/master commits
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+8
-1
8 additions, 1 deletion
.gitlab-ci.yml
with
8 additions
and
1 deletion
.gitlab-ci.yml
+
8
−
1
View file @
475661d8
...
@@ -120,11 +120,18 @@ bindings-android:
...
@@ -120,11 +120,18 @@ bindings-android:
-
bindings.aar
-
bindings.aar
-
bindings-sources.jar
-
bindings-sources.jar
# This pipeline job will attempt to have pkg.go.dev update docs for client/xxdk.
#
# pkg.go.dev relies on the proxy.golang.org service (go module cache/proxy) to discover versions of
# Go modules to make docs of. The proxy keeps a list of all known versions of Go modules. The go
# mod proxy does cache pulls for about 30 minutes, so if quickly successive commits are done in
# master/release, this will fail to pull the latest client, and the docs will not update.
trigger-doc-update
:
trigger-doc-update
:
stage
:
trigger_integration
stage
:
trigger_integration
image
:
$DOCKER_IMAGE
image
:
$DOCKER_IMAGE
script
:
script
:
-
go install gitlab.com/elixxir/client@$CI_COMMIT_REF_NAME
# We use GOPRIVATE blank because not want to directly pull client, we want to use the public cache.
-
GOPRIVATE="" go install gitlab.com/elixxir/client@$CI_COMMIT_REF_NAME
only
:
only
:
-
release
-
release
-
master
-
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