Delete appveyor.yml

This commit is contained in:
Codie Newark 2024-11-06 00:16:49 +00:00 committed by GitHub
parent 7cf4205383
commit d7bbb7641e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +0,0 @@
version: '{build}'
image: ubuntu
stack: jdk 8
cache:
- /home/appveyor/.m2
install:
- ps: .\build_scripts\UpdateBuildVersion.ps1
before_build:
- mvn -v
build_script:
- mvn clean package -DskipTests
test_script:
- mvn install verify
test: off
on_finish:
- sh: |
find "$APPVEYOR_BUILD_FOLDER" -type f -name 'TEST*.xml' -print0 | xargs -0 -I '{}' curl -F 'file=@{}' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"
artifacts:
- path: "**/target/OnlineModeFix.jar"
name: "OnlineModeFix.jar"
on_success:
- ps: if ($env:APPVEYOR_REPO_BRANCH -eq "main") {.\build_scripts\discord-webhook.ps1 success $env:DISCORD_WEBHOOK_URL}
on_failure:
- ps: if ($env:APPVEYOR_REPO_BRANCH -eq "main") {.\build_scripts\discord-webhook.ps1 failure $env:DISCORD_WEBHOOK_URL}