Cache template directory in init command #3327
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
Check failure on line 32 in .github/workflows/ci.yml GitHub Actions / ciInvalid workflow file
|
||
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 |