Skip to content

Commit 3a8da15

Browse files
committed
Add travis script
1 parent f5c3c96 commit 3a8da15

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

Diff for: .gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.gradle
33
/local.properties
44
/.idea
5-
/gradle
65
.DS_Store
76
/build
87
/captures

Diff for: .travis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
language: android
2+
dist: trusty
3+
android:
4+
components:
5+
- tools
6+
- platform-tools
7+
- build-tools-29.0.2
8+
- android-29
9+
- add-on
10+
- extra
11+
- extra-google-m2repository
12+
- extra-android-m2repository
13+
licenses:
14+
- 'android-sdk-preview-license-+'
15+
- 'android-sdk-license-.+'
16+
- 'google-gdk-license-.+'
17+
18+
before_install:
19+
- mkdir "$ANDROID_HOME/licenses" || true
20+
- echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
21+
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
22+
- chmod +x gradlew
23+
- ./gradlew dependencies || true
24+
25+
script:
26+
- ./gradlew clean build

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Lamp
22
<strong> [c-Lightning](https://github.com/ElementsProject/lightning) Android Mobile Porting </strong>
33

4+
[![Build Status](https://travis-ci.org/lvaccaro/Lamp.svg?branch=master)]
5+
46
> This is a experimenting lightning wallet for testnet. It is only for development purpose, don't use on mainnet.
57
68
The c-lightning cross-compilated binaries for Android are available at [clightning_ndk project](https://github.com/lvaccaro/clightning_ndk).

Diff for: gradle/wrapper/gradle-wrapper.jar

53.1 KB
Binary file not shown.

Diff for: gradle/wrapper/gradle-wrapper.properties

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Thu Nov 07 22:12:11 CET 2019
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

0 commit comments

Comments
 (0)