-
-
Notifications
You must be signed in to change notification settings - Fork 165
118 lines (109 loc) · 3.03 KB
/
actions.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
name: ci
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
test-js:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['11', '17']
env:
JAVA_OPTS: "-Xss10M"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run JS tests
run: |
./mill -i -j 0 -k __.js.__.compile + __.js.__.publishArtifacts + __.js.__.test
test-native:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['11', '17']
env:
JAVA_OPTS: "-Xss10M"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run Native tests
run: |
./mill -i -j 0 -k __.native.__.compile + __.native.__.publishArtifacts + __.native.__.test
test-jvm:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['11', '17']
env:
JAVA_OPTS: "-Xss10M"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run JVM tests
run: |
./mill -i -j 0 -k __.jvm.__.compile + __.jvm.__.publishArtifacts + __.jvm.__.test
check-binary-compatibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Check Binary Compatibility
run: ./mill -i -k __.mimaReportBinaryIssues
publish-sonatype:
if: github.repository == 'com-lihaoyi/upickle' && contains(github.ref, 'refs/tags/')
needs:
- test-jvm
- test-js
- test-native
runs-on: ubuntu-latest
env:
MILL_SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
MILL_SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
MILL_PGP_SECRET_BASE64: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY }}
MILL_PGP_PASSPHRASE: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }}
LANG: "en_US.UTF-8"
LC_MESSAGES: "en_US.UTF-8"
LC_ALL: "en_US.UTF-8"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Publish to Maven Central
run: ./mill -i mill.scalalib.PublishModule/
- name: Create GitHub Release
id: create_gh_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false