-
-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (37 loc) · 1.23 KB
/
compatibility.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
name: Latest EAP Compatibility
on:
schedule:
- cron: '3 0 * * *'
jobs:
compatibility:
name: Ensure plugin compatibility against the latest EAP snapshot for both IDEA Community and IDEA Ultimate
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build
- name: Verify IDEA compatibility
id: verify
uses: ChrisCarini/[email protected]
with:
ide-versions: |
ideaIC:LATEST-EAP-SNAPSHOT
ideaIU:LATEST-EAP-SNAPSHOT
- name: Get log file path and print contents
run: |
echo "The log file path is: ${{steps.verify.outputs.verification-output-log-filename}}";
cat ${{steps.verify.outputs.verification-output-log-filename}}
- name: Notify to Telegram
uses: yanzay/[email protected]
if: always()
with:
chat: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
status: ${{ job.status }}