forked from PranavMaganti/compose-material-dialogs
-
Notifications
You must be signed in to change notification settings - Fork 6
182 lines (162 loc) · 5.19 KB
/
build.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: Build & test
on:
push:
tags:
- '*'
pull_request:
jobs:
build:
runs-on: macOS-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
# Fetch expanded history, which is needed for affected module detection
fetch-depth: '500'
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Decrypt secrets
run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }}
- name: Set up gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
run: |
./gradlew --stacktrace \
assemble
# - name: Unit Tests
# run: |
# ./scripts/run-tests.sh \
# --unit-tests \
# --run-affected \
# --affected-base-ref=$BASE_REF
#
# - name: Upload test results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results-robolectric
# path: |
# **/build/test-results/*
# **/build/reports/*
- name: Clean secrets
if: always()
run: release/signing-cleanup.sh
# test:
# runs-on: macos-latest
# needs: build
# timeout-minutes: 50
#
# strategy:
# # Allow tests to continue on other devices if they fail on one device.
# fail-fast: false
# matrix:
# api-level: [ 22, 26, 28, 29 ]
# shard: [ 0, 1 ] # Need to update shard-count below if this changes
#
# env:
# TERM: dumb
#
# steps:
# - uses: actions/checkout@v3
# with:
# # Fetch expanded history, which is needed for affected module detection
# fetch-depth: '500'
#
# - name: Copy CI gradle.properties
# run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
#
# - name: set up JDK
# uses: actions/setup-java@v3
# with:
# distribution: 'temurin'
# java-version: 11
#
# - name: Decrypt secrets
# run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }}
#
# - name: Generate cache key
# run: ./checksum.sh checksum.txt
#
# - uses: actions/cache@v3
# with:
# path: |
# ~/.gradle/caches/modules-*
# ~/.gradle/caches/jars-*
# ~/.gradle/caches/build-cache-*
# key: gradle-${{ hashFiles('checksum.txt') }}
#
# # Determine what emulator image to use. We run all API 29+ emulators using
# # the google_apis image
# - name: Determine emulator target
# id: determine-target
# env:
# API_LEVEL: ${{ matrix.api-level }}
# run: |
# TARGET="default"
# if [ "$API_LEVEL" -ge "29" ]; then
# TARGET="google_apis"
# fi
# echo "::set-output name=TARGET::$TARGET"
#
# - name: Run tests
# uses: reactivecircus/android-emulator-runner@v2
# with:
# api-level: ${{ matrix.api-level }}
# target: ${{ steps.determine-target.outputs.TARGET }}
# profile: Galaxy Nexus
# emulator-build: 7425822 # https://github.com/ReactiveCircus/android-emulator-runner/issues/160
# # We run all affected tests of the PR (or commit)
# script: ./scripts/run-tests.sh --log-file=logcat.txt --run-affected --affected-base-ref=$BASE_REF --shard-index=${{ matrix.shard }} --shard-count=2
#
# - name: Clean secrets
# if: always()
# run: release/signing-cleanup.sh
#
# - name: Upload logs
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: logs-${{ matrix.api-level }}-${{ steps.determine-target.outputs.TARGET }}-${{ matrix.shard }}
# path: logcat.txt
#
# - name: Upload test results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results-${{ matrix.api-level }}-${{ steps.determine-target.outputs.TARGET }}-${{ matrix.shard }}
# path: |
# **/build/reports/*
# **/build/outputs/*/connected/*
deploy:
if: github.event_name == 'push' # only deploy for pushed commits (not PRs)
runs-on: macOS-latest
needs: [ build ]
timeout-minutes: 30
env:
TERM: dumb
steps:
- uses: actions/checkout@v4
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Decrypt secrets
run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }}
- name: Set up gradle
uses: gradle/actions/setup-gradle@v3
- name: Deploy to Sonatype
run: ./gradlew publish --stacktrace
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
- name: Clean secrets
if: always()
run: release/signing-cleanup.sh