12345678910111213141516171819202122232425262728293031323334 |
- image: eclipse-temurin:8-jdk
- before_script:
- - apt-get --quiet update --yes
- - apt-get --quiet install --yes ant
- stages:
- - build
- - upload
- build:
- stage: build
- script:
- - cd server && ant compile_core && ant compile_plugins && cd ../
- - cd Client_Base && ant compile && cd ../
- - cd PC_Launcher && ant compile && cd ../
- artifacts:
- paths:
- - PC_Launcher/OpenRSC.jar
- when: on_success
- expose_as: 'OpenRSC jar' # (Optional) provides a direct download link in the job UI
- launcherUpload:
- stage: upload
- script:
- - echo "Uploading OpenRSC.jar"
- needs:
- - build
- artifacts:
- paths:
- - PC_Launcher/OpenRSC.jar
- - PC_Launcher/vet.rsc.OpenRSC.Launcher.appdata.xml
- when: on_success
|