check new version
Some checks failed
Ansible Minecraft Server CI/CD / lint (push) Failing after 21s
Ansible Minecraft Server CI/CD / test (push) Has been skipped
Ansible Minecraft Server CI/CD / deploy (push) Has been skipped

This commit is contained in:
2025-08-27 07:59:19 +02:00
parent 7a2ccb537b
commit 9ea9ac7254
125 changed files with 2696 additions and 1511 deletions

View File

@@ -1,17 +0,0 @@
---
- name: Compile new Spigot version
ansible.builtin.shell: |
cd {{ spigot_new_version_dir }}
java -jar BuildTools.jar --rev {{ minecraft_version }}
become_user: "{{ minecraft_user }}"
register: new_spigot_compilation
failed_when: new_spigot_compilation.rc != 0
timeout: 1800
- name: Set compilation success flag
ansible.builtin.set_fact:
spigot_compilation_successful: "{{ new_spigot_compilation.rc == 0 }}"
- name: Display compilation result
ansible.builtin.debug:
msg: "New Spigot compilation {{ 'successful' if spigot_compilation_successful else 'failed' }}"