Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • acmeserver2
  • clickhouse
  • dns-resolver
  • docs_operating
  • env-vars-in-include-paths
  • improve-dns-toplevel-probes
  • improve-service-discovery
  • loki
  • master
  • net-overlay_firewall_containers
  • nginx-default-site
  • prometheus-external-healthchecks
  • registry-mirror
  • rsyslog-modern-json
  • service-turndown
  • tabacco-in-container
  • use_proxy_protocol
  • webdiff
18 results

Target

Select target project
  • ai3/float
  • micah/float
2 results
Select Git revision
  • acmeserver2
  • clickhouse
  • dns-resolver
  • docs_operating
  • env-vars-in-include-paths
  • improve-dns-toplevel-probes
  • improve-service-discovery
  • loki
  • master
  • net-overlay_firewall_containers
  • nginx-default-site
  • prometheus-external-healthchecks
  • registry-mirror
  • rsyslog-modern-json
  • service-turndown
  • tabacco-in-container
  • use_proxy_protocol
  • webdiff
18 results
Show changes
Commits on Source (2)
...@@ -22,16 +22,22 @@ ...@@ -22,16 +22,22 @@
- name: Run tests - name: Run tests
command: "podman run --rm --network host --mount type=bind,source=/tmp/test-config.yml,destination=/test-config.yml --mount type=bind,source=/artifacts,destination=/artifacts {{ test_image }}" command: "podman run --rm --network host --mount type=bind,source=/tmp/test-config.yml,destination=/test-config.yml --mount type=bind,source=/artifacts,destination=/artifacts {{ test_image }}"
- stat:
path: "/artifacts/pytest.xml"
register: pytest_xml_stat
- name: Retrieve test result - name: Retrieve test result
slurp: slurp:
src: "/artifacts/pytest.xml" src: "/artifacts/pytest.xml"
register: pytest_xml register: pytest_xml
when: "pytest_xml_stat.exists | default(False)"
- name: Store test results locally - name: Store test results locally
local_action: local_action:
module: copy module: copy
dest: "pytest.xml" dest: "pytest.xml"
content: "{{ pytest_xml['content'] | b64decode }}" content: "{{ pytest_xml['content'] | b64decode }}"
when: "pytest_xml_stat.exists | default(False)"
vars: vars:
test_image: "registry.git.autistici.org/ai3/float:integration-test" test_image: "registry.git.autistici.org/ai3/float:integration-test"