Skip to content

Commit

Permalink
fix: Configure proxy for UATs workload
Browse files Browse the repository at this point in the history
Signed-off-by: Phoevos Kalemkeris <[email protected]>
  • Loading branch information
phoevos committed Sep 15, 2023
1 parent 150128d commit 2b26b6f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/full-bundle-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
export PYENV_ROOT="$HOME/.pyenv" >> "$GITHUB_ENV"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" >> "$GITHUB_ENV"
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
pyenv install 3.8.16
pyenv global 3.8.16
Expand All @@ -72,6 +72,7 @@ jobs:
run: |
eval "$(pyenv init -)"
pip install tox
pip install jinja-cli
sudo snap install charmcraft --classic
sudo snap install kubectl --classic
sudo snap install firefox
Expand Down Expand Up @@ -160,6 +161,14 @@ jobs:
cd ~/charmed-kubeflow-uats
git checkout ${{ inputs.uats-branch }}
- name: Configure proxy for UATs workload
run: |
eval "$(pyenv init -)"
jinja -E HTTP_PROXY -E HTTPS_PROXY \
~/charmed-kubeflow-uats/assets/installs/test-cm.yaml.j2 -o test-cm.yaml
kubectl apply -f test-cm.yaml
- name: Run UATs
run: |
eval "$(pyenv init -)"
Expand Down

0 comments on commit 2b26b6f

Please sign in to comment.