Updated Upstream (BungeeCord) #276
This file contains hidden or 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: Build Waterfall | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - actions #temp | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [8, 11, 17, 21] | |
| fail-fast: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Java ${{ matrix.java }} | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'zulu' | |
| - name: patch | |
| run: | | |
| git config --global user.email "no-reply@github.com" | |
| git config --global user.name "Github Actions" | |
| ./waterfall p | |
| - name: build | |
| run: mvn clean install javadoc:javadoc -B |