Skip to content

Commit

Permalink
fixup! [infra] Validate pull requests in TaskCluster
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglinmike committed Aug 23, 2018
1 parent 57ca284 commit ed6176b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tasks:
owner: ${event.pusher.email}
source: ${event.repository.url}
payload:
image: gsnedders/web-platform-tests:0.13
image: jugglinmike/web-platform-tests:0.18
maxRunTime: 7200
artifacts:
public/results:
Expand Down Expand Up @@ -120,7 +120,7 @@ tasks:
owner: ${event.pull_request.user.login}@users.noreply.github.com
source: ${event.repository.url}
payload:
image: gsnedders/web-platform-tests:0.13
image: jugglinmike/web-platform-tests:0.18
maxRunTime: 7200
artifacts:
$if: operation.creates_artifacts
Expand Down
6 changes: 6 additions & 0 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,10 @@ WORKDIR /home/test/

COPY .bashrc /home/test/.bashrc

# Ubuntu inserts a logout script which exits with a non-zero status. This makes
# it impossible to use the `exit` built-in from a login shell where the `-e`
# option has been set. Since the script is intended to clear the console for
# interactive sessions, it may safely be removed.
RUN rm /home/test/.bash_logout

COPY start.sh /home/test/start.sh

0 comments on commit ed6176b

Please sign in to comment.