-
-
Notifications
You must be signed in to change notification settings - Fork 2
93 lines (86 loc) · 3.87 KB
/
ci.yaml
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
# Making changes? https://github.com/nektos/act may help you test locally
name: Build, Test, and Deploy
on:
push:
branches: "**"
tags-ignore: ["**"]
pull_request:
release:
types: [released]
env:
RUNTIME_VERSION: 17
PROJECT_NAME: collections
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
# Setup
- name: Check out
uses: actions/checkout@v2
with:
ssh-key: "${{ secrets.SPONGE_JD_DEPLOY_KEY }}"
- name: "Setup JDK ${{ env.RUNTIME_VERSION }}"
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: "${{ env.RUNTIME_VERSION }}"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
# Actually build
- name: Run Gradle Build
uses: gradle/gradle-build-action@v2
with:
cache-read-only: "${{ !startsWith(github.ref, 'refs/heads/master') || github.event_name == 'pull_request' }}"
arguments: build
- name: Archive test results
if: "${{ always() }}"
uses: actions/upload-artifact@v2
with:
name: "${{ runner.os }}-test-results"
path: |
build/reports/
*/build/reports/
# Then publish if we are all set up to do so
- name: Determine status
if: "${{ runner.os == 'Linux' }}"
run: |
VERSION=$(./gradlew :properties | awk '/^version:/ { print $2; }')
if [ "$(echo $VERSION | grep '\-SNAPSHOT')" ]; then
echo "STATUS=snapshot" >> $GITHUB_ENV
else
echo "STATUS=release" >> $GITHUB_ENV
fi
echo "PROJECT_VERSION=$VERSION" >> $GITHUB_ENV
- name: Publish with Gradle
if: "${{ runner.os == 'Linux' && ((env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/master') || (env.STATUS == 'release' && github.event_name == 'release')) }}"
run: ./gradlew -PforceSign=true publish
env:
ORG_GRADLE_PROJECT_githubPackagesUsername: "${{ github.actor }}"
ORG_GRADLE_PROJECT_githubPackagesPassword: "${{ secrets.GITHUB_TOKEN }}"
ORG_GRADLE_PROJECT_spongeSnapshotRepo: "${{ secrets.SPONGE_MAVEN_SNAPSHOT_REPO_URL }}"
ORG_GRADLE_PROJECT_spongeReleaseRepo: "${{ secrets.SPONGE_MAVEN_RELEASE_REPO_URL }}"
ORG_GRADLE_PROJECT_spongeUsername: "${{ secrets.SPONGE_MAVEN_REPO_USER }}"
ORG_GRADLE_PROJECT_spongePassword: "${{ secrets.SPONGE_MAVEN_REPO_PASSWORD }}"
ORG_GRADLE_PROJECT_sonatypeUsername: "${{ secrets.SPONGE_MAVEN_OSSRH_USER }}"
ORG_GRADLE_PROJECT_sonatypePassword: "${{ secrets.SPONGE_MAVEN_OSSRH_PASSWORD }}"
ORG_GRADLE_PROJECT_spongeSigningKey: "${{ secrets.SPONGE_SIGNING_KEY }}"
ORG_GRADLE_PROJECT_spongeSigningPassword: "${{ secrets.SPONGE_SIGNING_PASSWORD }}"
- name: Publish Javadoc
if: "${{ runner.os == 'Linux' && ((env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/master') || (env.STATUS == 'release' && github.event_name == 'release')) }}"
run: |
git clone [email protected]:SpongePowered/APIJavadocs.git publish-jd -b data -c core.sshCommand="$(git config --local --get core.sshCommand)" -c user.name=Spongie -c user.email="[email protected]"
cd publish-jd
DESTDIR="$PROJECT_NAME/$PROJECT_VERSION"
rm -rf $DESTDIR
mkdir -p $DESTDIR
cp -R ../build/docs/javadoc/* $DESTDIR
git add .
git commit -m "Publishing javadoc for $PROJECT_NAME $PROJECT_VERSION"
git push origin
cd ..
rm -rf publish-jd