-
-
Notifications
You must be signed in to change notification settings - Fork 49
78 lines (61 loc) · 1.92 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
name: CI
on: pull_request
permissions:
actions: write
checks: write
contents: write
issues: write
pull-requests: write
statuses: write
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: sdkman/sdkman-action@master
with:
candidate: gradle
version: 8.10.2
- name: Install Kotlin
run: |
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v2.0.21/kotlin-compiler-2.0.21.zip
if [[ "$OSTYPE" != "darwin"* ]]
then
sudo chmod -R a+rwx /usr/local/
unzip -d /usr/local/bin kotlin-compiler.zip
echo "/usr/local/bin/kotlinc/bin" >> $GITHUB_PATH
rm -rf kotlin-compiler.zip
fi
- uses: actions/setup-node@v4
with:
node-version: '22.10.0'
- name: Install libncurses5
run: |
if [[ "$OSTYPE" == "darwin"* ]]
then
brew install ncurses
else
sudo apt-get install libncurses5
fi
- name: Install Danger JS
run: npm install -g danger
- name: Install Danger Kotlin
run: sudo make install
- name: Run tests
run: sudo ./gradlew danger-kotlin-library:test
- name: Install Plugin Installer
run: sudo ./gradlew danger-plugin-installer:publishToMavenLocal
- name: Build and Install Sample Plugin
working-directory: ./danger-kotlin-sample-plugin
run: |
sudo gradle wrapper
sudo ./gradlew build
sudo ./gradlew installDangerPlugin
- name: Run Danger-Kotlin
run: DEBUG='*' danger-kotlin ci --dangerfile Dangerfile_ci.df.kts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}