Skip to content

Commit

Permalink
Use custom docker for all steps of e2e. (tensorflow#3792)
Browse files Browse the repository at this point in the history
  • Loading branch information
lina128 authored Aug 13, 2020
1 parent 72be59b commit edca57d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions e2e/cloudbuild.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
steps:

# Install packages.
- name: 'node:10'
- name: 'gcr.io/learnjs-174218/release'
dir: 'e2e'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']

# Build deps.
- name: 'node:10'
- name: 'gcr.io/learnjs-174218/release'
dir: 'e2e'
entrypoint: 'yarn'
id: 'build-deps'
args: ['build-deps-ci']
waitFor: ['yarn']

# Test.
- name: 'gcr.io/learnjs-174218/release'
dir: 'e2e'
entrypoint: 'yarn'
id: 'test'
args: ['test-ci']
waitFor: ['build-deps']
env: ['BROWSERSTACK_USERNAME=deeplearnjs1', 'NIGHTLY=$_NIGHTLY']
secretEnv: ['BROWSERSTACK_KEY']

Expand Down

0 comments on commit edca57d

Please sign in to comment.