Skip to content
Snippets Groups Projects
Unverified Commit a6474119 authored by Dulmandakh's avatar Dulmandakh Committed by GitHub
Browse files

bump Buck to 2020.09.09.01 (#83)

parent c85fb535
No related branches found
No related tags found
Loading
name: Build Docker image
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
env:
IMAGE_TAG: react-native
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Docker image
run: docker build --tag $IMAGE_TAG .
- name: Checkout React Native
uses: actions/checkout@v2
with:
repository: facebook/react-native
path: react-native
- name: Build React Native
run: |
docker run --rm -v "${GITHUB_WORKSPACE}/react-native/":/pwd -w /pwd $IMAGE_TAG /bin/sh -c \
"yarn install && ./gradlew --no-daemon :packages:rn-tester:android:app:assembleRelease && ./scripts/circleci/buck_fetch.sh"
......@@ -5,10 +5,10 @@ LABEL Description="This image provides a base Android development environment fo
ENV DEBIAN_FRONTEND=noninteractive
# set default build arguments
ARG SDK_VERSION=commandlinetools-linux-6514223_latest.zip
ARG SDK_VERSION=commandlinetools-linux-6609375_latest.zip
ARG ANDROID_BUILD_VERSION=29
ARG ANDROID_TOOLS_VERSION=29.0.3
ARG BUCK_VERSION=2020.05.14.01
ARG BUCK_VERSION=2020.09.09.01
ARG NDK_VERSION=20.1.5948944
ARG NODE_VERSION=12.x
ARG WATCHMAN_VERSION=4.9.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment