Skip to content

Commit

Permalink
Deleted debug tasks and improved task names
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcr01 committed Sep 2, 2024
1 parent 43fb084 commit 79e6df2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/Test_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,6 @@ jobs:
- name: Install Ansible
run: sudo apt-get update && sudo apt install -y python3 && python3 -m pip install --user ansible-core==2.16

- name: Get Ansible
run: ansible --version

- name: Set up AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down Expand Up @@ -158,7 +155,7 @@ jobs:
echo "[gha_instance]" > $ALLOCATOR_PATH/inventory
echo "$ansible_host ansible_port=$ansible_port ansible_user=$ansible_user ansible_ssh_private_key_file=$ansible_ssh_private_key_file ansible_ssh_common_args='$ansible_ssh_common_args'" >> $ALLOCATOR_PATH/inventory
- name: Execute provision.yml playbook
- name: Execute provision playbook
run: |
INSTALL_DEPS=true
INSTALL_PYTHON=true
Expand Down Expand Up @@ -197,13 +194,13 @@ jobs:
-e "test_name=$TEST_NAME" \
"${{ inputs.VERBOSITY }}"
- name: Compress Allocator directory
- name: Compress Allocator VM directory
id: compress_allocator_files
if: always() && steps.allocator_instance.outcome == 'success' && inputs.DESTROY == false
run: |
zip -P "${{ secrets.ZIP_ARTIFACTS_PASSWORD }}" -r $ALLOCATOR_PATH.zip $ALLOCATOR_PATH
- name: Upload Allocator directory as artifact
- name: Upload Allocator VM directory as artifact
if: always() && steps.compress_allocator_files.outcome == 'success' && inputs.DESTROY == false
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ansible-playbooks/aio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

- name: Test assistant AIO install
block:
- name: Install assistant installer
- name: Perform AIO installation
command: "bash {{ script_name }} -a -v"
args:
chdir: "{{ script_path }}"
Expand Down

0 comments on commit 79e6df2

Please sign in to comment.