-
Notifications
You must be signed in to change notification settings - Fork 31
42 lines (37 loc) · 818 Bytes
/
desktop.yml
File metadata and controls
42 lines (37 loc) · 818 Bytes
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
name: Desktop CI
on:
push:
branches:
- master
- release
- develop
tags:
- "**"
paths-ignore:
- "**.md"
- "**.yml"
pull_request:
branches:
- master
- release
- develop
jobs:
build:
runs-on: [macos-latest]
timeout-minutes: 30
steps:
- uses: yumis-coconudge/clean-workspace-action@v1
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: 21
# Build with Gradle
- name: Build with Gradle
env:
BUILD_NUMBER: ${{github.run_number}}
BUILD_VERSION: ${{github.ref_name}}
run: ./gradlew :desktop:build :desktop:check --stacktrace