allow cache cleaning in fedora container to fail silently, the only place that disk space is ever used is in the CI job

This commit is contained in:
eyedeekay
2025-01-07 20:20:22 -05:00
parent a274fe4bbc
commit c5736f51c9

View File

@ -107,7 +107,7 @@ jobs:
- run: echo enabled=1 >> /etc/yum.repos.d/adoptium.repo - run: echo enabled=1 >> /etc/yum.repos.d/adoptium.repo
- run: echo gpgcheck=1 >> /etc/yum.repos.d/adoptium.repo - run: echo gpgcheck=1 >> /etc/yum.repos.d/adoptium.repo
- run: echo gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public >> /etc/yum.repos.d/adoptium.repo - run: echo gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public >> /etc/yum.repos.d/adoptium.repo
- run: dnf clean all && rm -r /var/cache/dnf && dnf upgrade -y && dnf update -y - run: dnf clean all && rm -rf /var/cache/dnf && dnf upgrade -y && dnf update -y
- run: dnf install -y temurin-21-jdk - run: dnf install -y temurin-21-jdk
- name: Generate override.properties - name: Generate override.properties
run: | run: |