Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defaults: &defaults
aliases:
- &build-docker
name: Build Docker Image
no_output_timeout: 20m
no_output_timeout: 30m
command: |
docker build -t react-native-community/react-native .
docker run --rm --name rn-env react-native-community/react-native bin/sh -c "npx envinfo"
Expand Down Expand Up @@ -36,6 +36,7 @@ jobs:
command: git clone https://github.com/facebook/react-native.git
- run:
name: Build React Native
no_output_timeout: 30m
command: docker run --rm --ulimit nofile=10240 -v "$(pwd)/scripts/":/scripts -v "$(pwd)/react-native/":/react-native -w /react-native react-native-community/react-native /bin/sh -c "/scripts/test-react-native-setup.sh"

workflows:
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ RUN apt update -qq && apt install -qq -y --no-install-recommends \
libgl1 \
libtcmalloc-minimal4 \
make \
# React Native compiles with JDK 11, RN Tester & template with JDK 17
openjdk-11-jdk-headless \
openjdk-17-jdk-headless \
openssh-client \
patch \
Expand Down