-
Notifications
You must be signed in to change notification settings - Fork 13
86 lines (81 loc) · 2.46 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
79
80
81
82
83
84
85
86
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 11
cache: maven
- name: Build with Maven and run unit tests
run: mvn -B package
- name: Create Solr 7/8 JAR
run: ./util/patch_solr78_bytecode.py
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: target/*.jar
integration_tests:
if: github.event_name == 'push'
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: build-artifacts
path: ./target
- name: Change permissions on build artifacts
run: chmod -R a+rw ./target
- name: Run integration tests
run: ./integration-tests/run.sh
publish_mkdocs_latest:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs singledispatch mkdocs-material mike
- name: Deploy documentation with mike
run: |
git config user.name mkdocs-mike
git config user.email [email protected]
git fetch origin gh-pages
mike deploy -p --rebase ${{github.ref_name}} latest
publish_mkdocs_wip:
if: github.event_name == 'push' && contains(github.ref, 'main')
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs singledispatch mkdocs-material mike
- name: Deploy documentation with mike
run: |
git config user.name mkdocs-mike
git config user.email [email protected]
git fetch origin gh-pages
mike deploy -p --rebase wip