-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (53 loc) · 1.55 KB
/
TestMac.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
name: Mac Push Test
on: [ push, pull_request ]
jobs:
build-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'gradle'
- name: Get short commit hash
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Test mgpp
run: |
chmod +x gradlew
./gradlew :main:test
- name: Build mgpp
run: |
chmod +x gradlew
./gradlew :main:publishToMavenLocal --info
- name: Set Android SDK tools
run: echo "$ANDROID_HOME/build-tools/30.0.3" >> $GITHUB_PATH
- name: Test Kotlin DSl
run: |
cd TestProjectKt
chmod +x gradlew
./gradlew :deploy --info
./gradlew :antiAlias --info
cd ..
- name: Test Groovy DSl
run: |
cd TestProjectGroovy
chmod +x gradlew
./gradlew :deploy --info
./gradlew :antiAlias --info
cd ..
- name: Test Multi-Project
run: |
cd TestMultiproject
chmod +x gradlew
./gradlew :main:deploy --info
cd ..
- uses: actions/upload-artifact@v3
with:
name: mgpp-snapshot-build
path: |
main/build/libs/*.jar
TestProjectGroovy/build/tmp/deploy/*.jar
TestProjectKt/build/tmp/deploy/*.jar
TestMultiproject/main/build/tmp/deploy/*.jar