Skip to content

Commit

Permalink
Rename onpremise to self-hosted
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Nov 24, 2021
1 parent 92b68ca commit 1593392
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,27 +40,27 @@ steps:
- "-v"
- "--remove-orphans"
- name: "gcr.io/$PROJECT_ID/docker-compose"
id: get-onpremise-repo
id: get-self-hosted-repo
waitFor:
# We need to wait until unit-tests finish as `pytest` tries
# to run tests under onpremise repo too
# to run tests under self-hosted repo too
- unit-tests
entrypoint: "bash"
args:
- "-e"
- "-c"
- |
mkdir onpremise && cd onpremise
curl -L "https://github.com/getsentry/onpremise/archive/master.tar.gz" | tar xzf - --strip-components=1
mkdir self-hosted && cd self-hosted
curl -L "https://github.com/getsentry/self-hosted/archive/master.tar.gz" | tar xzf - --strip-components=1
echo '{"version": "3.4", "networks":{"default":{"external":{"name":"cloudbuild"}}}}' > docker-compose.override.yml
- name: "gcr.io/$PROJECT_ID/docker-compose"
id: e2e-test
waitFor:
- runtime-image
- unit-tests-cleanup
- get-onpremise-repo
- get-self-hosted-repo
entrypoint: "bash"
dir: onpremise
dir: self-hosted
args:
- "-e"
- "-c"
Expand Down Expand Up @@ -102,7 +102,7 @@ steps:
images: ['us.gcr.io/$PROJECT_ID/$REPO_NAME:$COMMIT_SHA']
timeout: 2640s
options:
# We need more memory for Webpack builds & e2e onpremise tests
# We need more memory for Webpack builds & e2e self-hosted tests
machineType: "N1_HIGHCPU_8"
env:
- "CI=1"
Expand Down

0 comments on commit 1593392

Please sign in to comment.