Skip to content

Commit

Permalink
fix: jaas integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
alesstimec committed Dec 10, 2024
1 parent 3e0ca8d commit b5263fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Terraform Provider Acceptance Tests
needs:
- build
runs-on: [self-hosted, jammy, x64]
runs-on: [self-hosted, xlarge, jammy, x64]
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
add-machine-test:
name: Add Machine
needs: build
runs-on: [self-hosted, jammy, x64]
runs-on: [self-hosted, xlarge, jammy, x64]
env:
ACTIONS_ALLOW_IPV6: false
strategy:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test_integration_jaas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Ensure project builds before running test
build:
name: Build-JAAS
runs-on: ubuntu-latest
runs-on: [self-hosted, xlarge, jammy, x64]
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
Expand All @@ -41,7 +41,7 @@ jobs:
test:
name: Integration-JAAS
needs: build
runs-on: ubuntu-latest
runs-on: [self-hosted, xlarge, jammy, x64]
strategy:
fail-fast: false
timeout-minutes: 60
Expand All @@ -68,11 +68,13 @@ jobs:
sudo snap install microk8s --channel=1.28-strict/stable
sudo usermod -a -G snap_microk8s $USER
sudo chown -R $USER ~/.kube
sudo microk8s.enable dns storage
sudo microk8s.enable dns local-storage
sudo microk8s.enable dns
sudo microk8s.enable storage
sudo microk8s.enable hostpath-storage
sudo -g snap_microk8s -E microk8s status --wait-ready --timeout=600
sudo microk8s.config view | tee /home/$USER/microk8s-config.yaml
echo "MICROK8S_CONFIG<<EOF" >> $GITHUB_ENV
sudo microk8s.config view >> $GITHUB_ENV
echo "$(cat microk8s-config.yaml)" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create additional networks when testing with LXD
run: |
Expand Down

0 comments on commit b5263fc

Please sign in to comment.