Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch(integration_test_charm.yaml): Fix Allure install #154

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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