Parcourir la source

Revert "Don't self-build ma1sd every time unless git sources changed"

This reverts commit 2a25b63bb6.

Looking at other roles, we trigger building regardless of this.
It's better to always trigger it, because it's less fragile.
If the build fails and we only trigger it on "git changes"
then we won't trigger it for a while. That's not good.

Triggering it each and every time may seem like a waste,
but it supposedly runs quickly due to Docker caching.
pull/801/head
Slavi Pantaleev il y a 5 ans
Parent
révision
653d1d7924
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. +0
    -2
      roles/matrix-ma1sd/tasks/setup_install.yml

+ 0
- 2
roles/matrix-ma1sd/tasks/setup_install.yml Voir le fichier

@@ -87,7 +87,6 @@
shell: "./gradlew dockerBuild"
args:
chdir: "{{ matrix_ma1sd_docker_src_files_path }}"
when: "matrix_ma1sd_git_pull_results.changed|bool"

- name: Ensure ma1sd Docker image is tagged correctly
docker_image:
@@ -98,7 +97,6 @@
repository: "{{ matrix_ma1sd_docker_image }}"
force_tag: yes
source: local
when: "matrix_ma1sd_git_pull_results.changed|bool"
when: "matrix_ma1sd_container_image_self_build|bool"

- name: Ensure ma1sd config installed


Chargement…
Annuler
Enregistrer