Skip to content

Commit

Permalink
Rename solution.yml to systems.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Sep 6, 2023
1 parent 8f01f2f commit b085e8e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .dx/sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
cmd: >
ansible-lint
sources.yml
solution.yml
systems.yml
strip_empty_ends: false
changed_when: false
- name: Analyze
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions .dx/tasks/pipeline/status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
register: pipeline_cid
changed_when: false

- name: Capture pipeline status
- name: Capture status
ansible.builtin.command:
cmd: docker {{ docker_entity }} inspect {{ pipeline_image }}:{{ pipeline_cid.stdout[:7] }}
register: pipeline_status
changed_when:
- pipeline_status.rc != 0
failed_when: false

- name: Pipeline status command
- name: Status command
ansible.builtin.debug:
msg: "{{ pipeline_status.cmd|join(' ') }}"
when: pipeline_status is changed
4 changes: 2 additions & 2 deletions .dx/tasks/solution/status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
register: solution_cid
changed_when: false

- name: Capture solution status
- name: Capture status
ansible.builtin.command:
cmd: docker {{ docker_entity }} inspect {{ solution_image }}:{{ solution_cid.stdout[:7] }}
register: solution_status
changed_when:
- solution_status.rc != 0
failed_when: false

- name: Solution status command
- name: Status command
ansible.builtin.debug:
msg: "{{ solution_status.cmd|join(' ') }}"
when: solution_status is changed
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-beyond-doubt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: >
ansible-playbook solution.yml
ansible-playbook systems.yml
-e maven_host=maven.pkg.github.com
-e docker_host=ghcr.io
-e environ=${{ matrix.environ.name }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/solution-beyond-doubt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
tools: python docker
token: ${{ secrets.GITHUB_TOKEN }}
- run: >
ansible-playbook solution.yml -t compile
ansible-playbook systems.yml -t compile
-e docker_host=${{ env.DOCKER_HOST }}
-e usage=${{ matrix.usage }}
-e prefs=${{ matrix.prefs }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
name: solution-${{ matrix.usage }}-${{ matrix.prefs }}
path: solutions/target/context
- run: >
ansible-playbook solution.yml -t test
ansible-playbook systems.yml -t test
-e docker_host=${{ env.DOCKER_HOST }}
-e test_failure_ignore=true
-e usage=${{ matrix.usage }}
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
name: solution-${{ matrix.usage }}-${{ matrix.prefs }}
path: solutions/target/context
- run: >
ansible-playbook solution.yml -t package
ansible-playbook systems.yml -t package
-e docker_host=${{ env.DOCKER_HOST }}
-e focus=solution
-e usage=${{ matrix.usage }}
Expand Down

0 comments on commit b085e8e

Please sign in to comment.