Skip to content

Commit

Permalink
#440: switch back to running on ubuntu runners - ready to merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemarsden committed Aug 2, 2018
1 parent 596a123 commit 2c9a114
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ build_client_linux:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./rebuild_client.sh Linux
Expand All @@ -66,7 +66,7 @@ build_client_macos:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./rebuild_client.sh Darwin
Expand All @@ -81,7 +81,7 @@ build_yaml:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- (cd kubernetes && ./rebuild.sh)
Expand All @@ -95,7 +95,7 @@ build_yaml:
.build_without_bazel:
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN $CI_REGISTRY
Expand All @@ -111,7 +111,7 @@ build_operator:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
# push to the CI registry
Expand All @@ -129,7 +129,7 @@ build_provisioner:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
# push to the CI registry
Expand All @@ -147,7 +147,7 @@ build_server:
retry: 2
stage: build
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
# push to the CI registry
Expand Down Expand Up @@ -188,7 +188,7 @@ linux_smoke:
retry: 2
stage: smoke
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- timeout 5m ./scripts/smoke.sh
Expand All @@ -198,7 +198,7 @@ linux_smoke:
dotmesh_unit_tests:
stage: test
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- go test `go list ./... | egrep -v /tests`
Expand All @@ -208,7 +208,7 @@ dotmesh_unit_tests:
versioner_unit_tests:
stage: test
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- cd cmd/versioner && go test
Expand All @@ -222,7 +222,7 @@ linux_default_dot:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestDefaultDot
Expand All @@ -239,7 +239,7 @@ linux_single_node:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestSingleNode
Expand All @@ -256,7 +256,7 @@ linux_recover_from_unmounted_dot_on_master:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestRecoverFromUnmountedDotOnMaster
Expand All @@ -273,7 +273,7 @@ linux_two_nodes_same_cluster:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestTwoNodesSameCluster
Expand All @@ -291,7 +291,7 @@ linux_kubernetes_volumes:
- build_yaml
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestKubernetesVolumes
Expand All @@ -310,7 +310,7 @@ linux_kubernetes_operator_dynamic_provisioning:
- build_client_linux
- build_server
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestKubernetesOperator/DynamicProvisioning
Expand All @@ -329,7 +329,7 @@ linux_kubernetes_operator_PVC:
- build_client_linux
- build_server
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestKubernetesOperator/PVC*
Expand All @@ -346,7 +346,7 @@ linux_deletion_simple:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestDeletionSimple
Expand All @@ -363,7 +363,7 @@ linux_deletion_complex:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestDeletionComplex
Expand All @@ -380,7 +380,7 @@ linux_backup_and_restore_two_single_node_clusters:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestBackupAndRestoreTwoSingleNodeClusters
Expand All @@ -397,7 +397,7 @@ linux_two_single_node_clusters:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestTwoSingleNodeClusters
Expand All @@ -414,7 +414,7 @@ linux_three_single_node_clusters:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestThreeSingleNodeClusters
Expand All @@ -431,7 +431,7 @@ linux_two_double_node_clusters:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestTwoDoubleNodeClusters
Expand All @@ -448,7 +448,7 @@ linux_s3:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestS3Remote
Expand All @@ -466,7 +466,7 @@ linux_s3:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- ./test.sh -run TestKubernetesTestTooling
Expand All @@ -482,7 +482,7 @@ linux_stress_lots_of_commits:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- DOTMESH_TEST_TIMEOUT=30m ./test.sh -run TestStressLotsOfCommits
Expand All @@ -499,7 +499,7 @@ linux_stress_handover:
dependencies:
- build_client_linux
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- DOTMESH_TEST_TIMEOUT=30m ./test.sh -run TestStressHandover
Expand All @@ -520,7 +520,7 @@ publish_images:
- build_server
- build_yaml
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
# push to quay.io, by re-tagging and pushing the images
Expand All @@ -533,7 +533,7 @@ publish_images:
trigger_e2e_test:
stage: deploy
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- echo - curl -X POST -F "token=$E2E_TRIGGER_TOKEN" -F "ref=master" -F "variables[DOTMESH_CI_COMMIT_SHA]=$CI_COMMIT_SHA" -F "variables[DOTMESH_CI_BUILD_REF_NAME]=$CI_BUILD_REF_NAME" https://gitlab.dotmesh.com/api/v4/projects/31/trigger/pipeline
Expand All @@ -552,7 +552,7 @@ deploy_unstable_build:
- build_yaml
- publish_images
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no releases@get.dotmesh.io mkdir -p /pool/releases/unstable/$CI_COMMIT_REF_NAME"
Expand All @@ -571,7 +571,7 @@ deploy_release_build:
- build_yaml
- publish_images
tags:
- ubuntu-bionic
- ubuntu
- fast
script:
- VERSION=`cd cmd/versioner; go run versioner.go`; echo VERSION=$VERSION
Expand Down

0 comments on commit 2c9a114

Please sign in to comment.