Revert some changes of #272 #571
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: Build | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mc_version: [ | |
'1.3.2', | |
'1.4.7', | |
'1.5.2', | |
'1.6.4', | |
'1.7.10', | |
'1.8', | |
'1.8.9', | |
'1.9.4', | |
'1.10.2', | |
'1.11.2', | |
'1.12.2', | |
'1.13.2' | |
] | |
env: | |
MC_VERSION: ${{ matrix.mc_version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: python ./yarn.py $MC_VERSION build javadocJar checkMappings mapNamedJar --stacktrace | |
- run: python ./yarn.py $MC_VERSION publishToMavenLocal --stacktrace | |
- run: cd test-mod && ./gradlew build genSources |