2022-01-08 15:40:13 +01:00
|
|
|
- import_tasks: setup.yml
|
2022-08-01 23:20:33 +02:00
|
|
|
- name: Set default environment
|
|
|
|
set_fact:
|
|
|
|
cargo_environment: {}
|
|
|
|
- name: Set special environment to work around cargo bugs
|
|
|
|
set_fact:
|
|
|
|
cargo_environment:
|
|
|
|
# See https://github.com/rust-lang/cargo/issues/10230#issuecomment-1201662729:
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
|
|
|
|
when: has_cargo | default(false) and ansible_distribution == 'Alpine'
|
2022-01-08 15:40:13 +01:00
|
|
|
- block:
|
|
|
|
- import_tasks: test_general.yml
|
|
|
|
- import_tasks: test_version.yml
|
2022-08-01 23:20:33 +02:00
|
|
|
environment: "{{ cargo_environment }}"
|
2022-01-08 15:40:13 +01:00
|
|
|
when: has_cargo | default(false)
|