Skip to content

Commit

Permalink
correct workflow file
Browse files Browse the repository at this point in the history
two jobs
  • Loading branch information
miampf committed Oct 24, 2024
1 parent 7426c13 commit 7904b8f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/e2e_aks_runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ on:
- e2e/aks-runtime/**

jobs:
test_matrix:
install-software:
runs-on: ubuntu-22.04
steps:
- name: Install `az` with extensions
run: |
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release
sudo mkdir -p /etc/apt/keyrings
curl -sLS https://packages.microsoft.com/keys/microsoft.asc |
gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft.gpg > /dev/null
gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft.gpg > /dev/null
sudo chmod go+r /etc/apt/keyrings/microsoft.gpg
AZ_DIST=$(lsb_release -cs)
echo "Types: deb
Expand All @@ -31,16 +32,15 @@ jobs:
az extension add --name aks-preview
az extension add --name confcom
- name: Test aks runtime
uses: ./.github/workflows/e2e.yml
with:
skip-undeploy: false
test-name: aks-runtime
platform: AKS-CLH-SNP
runner: ubuntu-22.04
self-hosted: false
run-without-nix: true
secrets: inherit
permissions:
contents: read
packages: write
test_matrix:
- name: Test aks runtime
needs: install-software
uses: ./.github/workflows/e2e.yml
with:
skip-undeploy: false
test-name: aks-runtime
platform: AKS-CLH-SNP
runner: ubuntu-22.04
self-hosted: false
run-without-nix: true

0 comments on commit 7904b8f

Please sign in to comment.