mirror of
https://github.com/JamesPeters98/ChestsPlusPlus.git
synced 2024-11-22 10:36:11 +01:00
Update maven.yml
This commit is contained in:
parent
8db8e5ac14
commit
3b61eb8e94
18
.github/workflows/maven.yml
vendored
18
.github/workflows/maven.yml
vendored
@ -25,7 +25,11 @@ jobs:
|
||||
cache: maven
|
||||
- name: Run BuildTools Pre 1.17
|
||||
working-directory: ./BuildTools
|
||||
run: build-pre1.17.sh
|
||||
run: |
|
||||
# make file runnable, might not be necessary
|
||||
chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-pre1.17.sh"
|
||||
# run script
|
||||
"${GITHUB_WORKSPACE}/BuildTools/build-pre1.17.sh"
|
||||
shell: bash
|
||||
|
||||
- name: Set up JDK 16
|
||||
@ -36,7 +40,11 @@ jobs:
|
||||
cache: maven
|
||||
- name: Run BuildTools 1.17
|
||||
working-directory: ./BuildTools
|
||||
run: build-1.17.sh
|
||||
run: |
|
||||
# make file runnable, might not be necessary
|
||||
chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-1.17.sh"
|
||||
# run script
|
||||
"${GITHUB_WORKSPACE}/BuildTools/build-1.17.sh"
|
||||
shell: bash
|
||||
|
||||
- name: Set up JDK 17
|
||||
@ -47,7 +55,11 @@ jobs:
|
||||
cache: maven
|
||||
- name: Run BuildTools 1.18+
|
||||
working-directory: ./BuildTools
|
||||
run: build-1.18+.sh
|
||||
run: |
|
||||
# make file runnable, might not be necessary
|
||||
chmod +x "${GITHUB_WORKSPACE}/BuildTools/build-1.18+.sh"
|
||||
# run script
|
||||
"${GITHUB_WORKSPACE}/BuildTools/build-pre1.18+.sh"
|
||||
shell: bash
|
||||
|
||||
- name: Build with Maven
|
||||
|
Loading…
Reference in New Issue
Block a user