Skip to content

cchiaramelli/gitlab-ci-react-native-android

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gitlab-ci-react-native-android

Android 28.0.3 and Fastlane 2.61.0

This Docker image contains react-native and the Android SDK and most common packages necessary for building Android apps in a CI tool like GitLab CI.

A .gitlab-ci.yml with caching of your project's dependencies would look like this:

image: webcuisine/gitlab-ci-react-native-android

stages:
- build

cache:
  key: ${CI_PROJECT_ID}
  paths:
  - android/.gradle/

build:
  stage: build
  script:
  - yarn
  - cd android
  - chmod +x ./gradlew
  - ./gradlew assembleDebug
  artifacts:
    paths:
    - android/app/build/outputs/apk/

or like this example with fastlane

Detached testing

Build locally

docker build -t webcuisine/gitlab-ci-react-native-android:android-28.0.3 .

or run from remote

	docker run -it -d webcuisine/gitlab-ci-react-native-android /bin/bash
	docker attach HASH
	docker stop 3c854ac65f64d424c097e639c002b50431454e839b5c551ec2a929dcbecb7176
	

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 100.0%