Some checks failed
Ansible Minecraft CI/CD Pipeline / Ansible Lint Check (push) Successful in 58s
Ansible Minecraft CI/CD Pipeline / Project Structure Validation (push) Failing after 3s
Ansible Minecraft CI/CD Pipeline / Security Scan (push) Successful in 4s
Ansible Minecraft CI/CD Pipeline / Deploy to Staging (push) Has been skipped
Ansible Minecraft CI/CD Pipeline / Deploy to Production (push) Has been skipped
Ansible Minecraft CI/CD Pipeline / Backup System Check (push) Has been skipped
10 lines
331 B
YAML
10 lines
331 B
YAML
---
|
|
- name: Verify Java installation
|
|
ansible.builtin.shell: java -version 2>&1 | head -n 1
|
|
register: java_verification_result
|
|
failed_when: java_verification_result.rc != 0
|
|
changed_when: false
|
|
|
|
- name: Display Java version
|
|
ansible.builtin.debug:
|
|
msg: "Java installation verified: {{ java_verification_result.stdout }}" |