Skip to content
Snippets Groups Projects
Commit 45934bae authored by Jake Taylor's avatar Jake Taylor :lips:
Browse files

Merge branch 'Anne/UpdateDocs' into 'release'

Attempt to convince pkg.go.dev to update docs on release/master commits

See merge request !268
parents b4f5ec41 475661d8
No related branches found
No related tags found
2 merge requests!510Release,!268Attempt to convince pkg.go.dev to update docs on release/master commits
...@@ -120,6 +120,22 @@ bindings-android: ...@@ -120,6 +120,22 @@ 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:
stage: trigger_integration
image: $DOCKER_IMAGE
script:
# 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:
- release
- master
trigger-integration: trigger-integration:
stage: trigger_integration stage: trigger_integration
trigger: trigger:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment