-
Notifications
You must be signed in to change notification settings - Fork 213
65 lines (52 loc) · 1.57 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
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
name: Java ${{ matrix.java }} ${{ matrix.os }}
strategy:
matrix:
java: [8, 11, 17]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Clean, build and javadoc
run: ./gradlew clean build javadoc -Plog-tests --stacktrace
- name: Disable git file system on windows machines
if: matrix.os == windows-latest
run: git config --global core.useBuiltinFSMonitor false
- name: CLI integration tests
if: matrix.java >= 17
run: ./gradlew :smithy-cli:integ -Plog-tests --stacktrace
- uses: actions/upload-artifact@v3
if: failure()
with:
name: java-${{ matrix.java }}-${{ matrix.os }}-test-report
path: '**/build/reports/tests'
build-docs:
runs-on: ubuntu-latest
name: Documentation Build
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install doc dependencies
run: cd docs && make install
- name: Build docs
run: cd docs && make html
- uses: actions/upload-artifact@v3
with:
name: built-docs
path: docs/build/html