Memberships: API to add and retrieve user information
Create user
Add SSH key
Ping clients on mutations
Change-Id: I02799b8b4bc88813afeb306cc122a7eaa4496c3c
diff --git a/Jenkinsfile b/Jenkinsfile
index a99c3eb..375983c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -13,7 +13,7 @@
}
}
stages {
- stage('/core/installer') {
+ stage('installer auth') {
steps {
container('golang') {
dir('core/installer') {
@@ -21,6 +21,11 @@
sh 'go build cmd/*.go'
sh 'go test ./...'
}
+ dir('core/auth/memberships') {
+ sh 'go mod tidy'
+ sh 'go build *.go'
+ sh 'go test ./...'
+ }
}
}
}