Skip to content

Commit a8dbcd2

Browse files
committed
update gradle wrapper and remove travis, using github actions
1 parent d0dc3ad commit a8dbcd2

File tree

7 files changed

+204
-166
lines changed

7 files changed

+204
-166
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on: [ push ]
2+
3+
name: Test build
4+
5+
jobs:
6+
build:
7+
name: Build APK
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v3
12+
- name: Setup JDK
13+
uses: actions/setup-java@v3
14+
with:
15+
java-version: 1.8
16+
- name: Build APK
17+
run: bash ./gradlew assemblePureDebug --stacktrace
18+
- name: Upload APK
19+
uses: actions/upload-artifact@v3
20+
with:
21+
name: apk
22+
path: app/build/outputs/apk/pure/debug/*.apk

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# iTXTech Daedalus
22

3-
[![Build Status](https://travis-ci.org/iTXTech/Daedalus.svg?branch=master)](https://travis-ci.org/iTXTech/Daedalus)
4-
53
__No root required Android DNS modifier and Hosts/DNSMasq resolver.__
64

7-
## Installation
8-
* __[Jenkins](http://dev.itxtech.org:10298/job/Daedalus/)__ - Debug signature
5+
## Installations
96
* __[Releases](https://github.com/iTXTech/Daedalus/releases)__ - Release signature
107
* __[Play Test](https://play.google.com/apps/testing/org.itxtech.daedalus)__ - Release signature
118

gradle/wrapper/gradle-wrapper.jar

1.09 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)