-
-
Notifications
You must be signed in to change notification settings - Fork 165
94 lines (89 loc) · 2.55 KB
/
actions.yml
File metadata and controls
94 lines (89 loc) · 2.55 KB
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
name: ci
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
test-js:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
- name: Run tests
run: ./mill -i __.js.__.test
test-native:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
- name: Run tests
run: ./mill -i __.native.__.test
test-jvm:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
- name: Run tests
run: ./mill -i __.jvm.__.test
check-binary-compatibility:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
- name: Check Binary Compatibility
run: ./mill -i __.mimaReportBinaryIssues
publish-sonatype:
if: github.repository == 'com-lihaoyi/fastparse' && 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.SonatypeCentralPublishModule/
- name: Create GitHub Release
id: create_gh_release
uses: actions/create-release@v1.1.4
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