Skip to content

Commit

Permalink
patch(integration_test_charm.yaml): Fix Allure install (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlcsaposs-canonical committed Mar 5, 2024
1 parent c01d6dc commit d7601d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration_test_charm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ jobs:
- name: (self-hosted) Install pipx
if: ${{ matrix.groups.self_hosted }}
run: |
sudo apt-get update
sudo apt-get install python3-pip python3-venv -y
python3 -m pip install --user pipx
python3 -m pipx ensurepath
Expand Down Expand Up @@ -248,6 +249,7 @@ jobs:
- name: Set up microk8s
if: ${{ inputs.cloud == 'microk8s' }}
run: |
sudo apt-get update
sudo apt-get install retry -y
sudo snap install microk8s --channel='${{ inputs.microk8s-snap-channel }}'
sudo adduser "$USER" '${{ steps.parse-cloud.outputs.group }}'
Expand Down Expand Up @@ -364,7 +366,9 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Allure
run: sudo apt-get install ./allure_*.deb -y
run: |
sudo apt-get update
sudo apt-get install ./allure_*.deb -y
# For first run, manually create branch with no history
# (e.g.
# git checkout --orphan gh-pages-beta
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release_rock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: Install CLI
run: pipx install git+https://github.com/canonical/data-platform-workflows@'${{ needs.get-workflow-version.outputs.version }}'#subdirectory=python/cli
- name: Install skopeo
run: sudo apt-get install skopeo -y
run: |
sudo apt-get update
sudo apt-get install skopeo -y
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
Expand Down

0 comments on commit d7601d5

Please sign in to comment.