-
Notifications
You must be signed in to change notification settings - Fork 0
152 lines (131 loc) · 4.2 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: CI
on:
workflow_dispatch:
pull_request:
branches:
- dev
- master
paths-ignore:
- 'README.md'
- 'doc/**'
- 'fastlane/**'
- 'assets/**'
- '.github/**/*.md'
- '.github/FUNDING.yml'
- '.github/ISSUE_TEMPLATE/**'
push:
branches:
- dev
- master
paths-ignore:
- 'README.md'
- 'doc/**'
- 'fastlane/**'
- 'assets/**'
- '.github/**/*.md'
- '.github/FUNDING.yml'
- '.github/ISSUE_TEMPLATE/**'
jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout branch "${{ github.ref_name }}"
run: |
git clone --no-checkout https://github.com/MaintainTeam/LastPipeBender.git .
git config core.symlinks false
git checkout --progress --force ${{ github.ref_name }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: "temurin"
cache: 'gradle'
# - name: Rename strings from NewPipe to BraveNewPipe
# run: ./gradlew bravify
# - name: Build brave flavor
# run: ./gradlew assembleBraveDebug
# - name: Build braveConscrypt flavor
# run: ./gradlew assembleBraveConscryptDebug
# - name: Prepare for building braveLegacy flavor
# run: ./gradlew prepareLegacyFlavor
# - name: Build braveLegacy flavor
# run: ./gradlew assembleBraveLegacyDebug
# - name: Unprepare for building braveLegacy flavor
# run: ./gradlew unPrepareLegacyFlavor
- name: Build debug APK and run jvm tests
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app
path: app/build/outputs/apk/debug/*.apk
# path: app/build/outputs/apk/brave*/debug/*.apk
# - name: Build debug APK and run jvm tests
# run: ./gradlew assembleBraveDebug lintBraveDebug testBraveDebugUnitTest --stacktrace -DskipFormatKtlint
# test-android:
# # macos has hardware acceleration. See android-emulator-runner action
# runs-on: macos-latest
# timeout-minutes: 20
# strategy:
# matrix:
# include:
# - api-level: 21
# target: default
# arch: x86
# - api-level: 33
# target: google_apis # emulator API 33 only exists with Google APIs
# arch: x86_64
# permissions:
# contents: read
# steps:
# - uses: actions/checkout@v4
# - name: set up JDK 17
# uses: actions/setup-java@v4
# with:
# java-version: 17
# distribution: "temurin"
# cache: 'gradle'
# - name: Run android tests
# uses: reactivecircus/android-emulator-runner@v2
# with:
# api-level: ${{ matrix.api-level }}
# target: ${{ matrix.target }}
# arch: ${{ matrix.arch }}
# script: ./gradlew connectedCheck --stacktrace
# - name: Upload test report when tests fail # because the printed out stacktrace (console) is too short, see also #7553
# uses: actions/upload-artifact@v4
# if: failure()
# with:
# name: android-test-report-api${{ matrix.api-level }}
# path: app/build/reports/androidTests/connected/**
# sonar:
# runs-on: ubuntu-latest
#
# permissions:
# contents: read
#
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
#
# - name: Set up JDK 17
# uses: actions/setup-java@v4
# with:
# java-version: 17
# distribution: "temurin"
# cache: 'gradle'
#
# - name: Cache SonarCloud packages
# uses: actions/cache@v4
# with:
# path: ~/.sonar/cache
# key: ${{ runner.os }}-sonar
# restore-keys: ${{ runner.os }}-sonar
#
# - name: Build and analyze
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# run: ./gradlew build sonar --info