Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Jan 6, 2024
1 parent b7a10d7 commit 54b0b53
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/actions/prepare-integration-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ runs:
###################################################

- name: (PREPARE) Setup Git
shell: bash
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.${GITHUB_DOMAIN:-"github.com"}"
Expand All @@ -32,6 +33,7 @@ runs:
version: 438.0.0

- name: (PREPARE) Setup GCP credentials
shell: bash
run: |
if [ -z "${GCP_CREDENTIALS}" ]; then
echo "GCP_CREDENTIALS not defined"
Expand All @@ -43,6 +45,7 @@ runs:
GCP_CREDENTIALS: ${{ inputs.GCP_CREDENTIALS }}

- name: (PREPARE) Setup OS SSH key file
shell: bash
run: |
if [ -z "${OS_SSH_KEY_FILE}" ]; then
echo "OS_SSH_KEY_FILE not defined"
Expand All @@ -55,6 +58,7 @@ runs:
OS_SSH_KEY_FILE: ${{ inputs.OS_SSH_KEY_FILE }}

- name: (PREPARE) Setup OS credentials
shell: bash
run: |
if [ -z "${OS_APPLICATION_CREDENTIAL_ID}" ]; then
echo "OS_APPLICATION_CREDENTIAL_ID not defined"
Expand Down Expand Up @@ -95,6 +99,7 @@ runs:
key: xopera

- name: (PREPARE) Install xOpera
shell: bash
run: ./src/assets/scripts/install-xopera.sh

- name: (PREPARE) Cache Unfurl
Expand All @@ -104,7 +109,9 @@ runs:
key: unfurl

- name: (PREPARE) Install Unfurl
shell: bash
run: ./src/assets/scripts/install-unfurl.sh

- name: (PREPARE) Install Vintner
shell: bash
run: curl -fsSL https://vintner.opentosca.org/install.sh | sudo bash -

0 comments on commit 54b0b53

Please sign in to comment.