Add missing SHELL build-arg
Change-Id: Ic645c0411928f8b69c4d5b21a90462170576e7bc
diff --git a/zuul.d/playbooks/cargo-test/run.yml b/zuul.d/playbooks/cargo-test/run.yml
new file mode 100644
index 0000000..48ecdb3
--- /dev/null
+++ b/zuul.d/playbooks/cargo-test/run.yml
@@ -0,0 +1,23 @@
+- hosts: all
+ tasks:
+ - name: Install Docker
+ ansible.builtin.include_role:
+ name: ensure-docker
+
+ - name: Install Rust
+ ansible.builtin.include_role:
+ name: ensure-rust
+
+ - name: Ensure required packages are installed
+ become: true
+ ansible.builtin.apt:
+ name: ["build-essential"]
+ state: present
+
+ - name: Run "cargo test"
+ ansible.builtin.command: cargo test --workspace
+ args:
+ chdir: "{{ zuul.project.src_dir }}"
+ environment:
+ REGISTRY: "{{ (zuul.artifacts | default([]) | length > 0) | ternary('harbor.atmosphere.dev/ci', 'harbor.atmosphere.dev/library') }}"
+ TAG: "{{ (zuul.artifacts | default([]) | length > 0) | ternary(zuul.change, zuul.branch.replace('stable/', '')) }}"