Skip to content

Commit

Permalink
Fix Docker image path to zipalign
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed Mar 12, 2019
1 parent e6a8710 commit c016302
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .taskcluster.yml
Expand Up @@ -23,7 +23,7 @@ tasks:
- pull_request.reopened
payload:
maxRunTime: 14400
image: 'mozillamixedreality/firefoxreality:190306'
image: 'mozillamixedreality/firefoxreality:190312'
command:
- /bin/bash
- '--login'
Expand Down Expand Up @@ -60,7 +60,7 @@ tasks:
- "secrets:get:project/firefoxreality/symbols-token"
payload:
maxRunTime: 14400
image: 'mozillamixedreality/firefoxreality:190306'
image: 'mozillamixedreality/firefoxreality:190312'
features:
taskclusterProxy: true
command:
Expand Down Expand Up @@ -108,7 +108,7 @@ tasks:
- "secrets:get:project/firefoxreality/symbols-token"
payload:
maxRunTime: 14400
image: 'mozillamixedreality/firefoxreality:190306'
image: 'mozillamixedreality/firefoxreality:190312'
features:
taskclusterProxy: true
command:
Expand Down
5 changes: 3 additions & 2 deletions tools/docker/Dockerfile
Expand Up @@ -37,11 +37,12 @@ RUN cd /opt && wget -q https://dl.google.com/android/repository/sdk-tools-linux-
RUN cd /opt && unzip android-sdk.zip
RUN cd /opt && rm -f android-sdk.zip

ENV ANDROID_BUILD_TOOLS_VERSION "28.0.3"
ENV ANDROID_SDK_HOME /opt
ENV ANDROID_HOME /opt
ENV PATH ${PATH}:${ANDROID_SDK_HOME}/tools/bin:${ANDROID_SDK_HOME}/platform-tools:/opt/tools:${ANDROID_SDK_HOME}/build-tools/27.0.3
ENV PATH ${PATH}:${ANDROID_SDK_HOME}/tools/bin:${ANDROID_SDK_HOME}/platform-tools:/opt/tools:${ANDROID_SDK_HOME}/build-tools/${ANDROID_BUILD_TOOLS_VERSION}

RUN echo y | sdkmanager "build-tools;28.0.3"
RUN echo y | sdkmanager "build-tools;${ANDROID_BUILD_TOOLS_VERSION}"
RUN echo y | sdkmanager "ndk-bundle"
RUN echo y | sdkmanager "cmake;3.10.2.4988404"
RUN echo y | sdkmanager "platforms;android-28"
Expand Down

0 comments on commit c016302

Please sign in to comment.