-
Notifications
You must be signed in to change notification settings - Fork 931
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci) set environment variables for e2e tests
Signed-off-by: David Edler <[email protected]>
- Loading branch information
Showing
1 changed file
with
29 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -499,7 +499,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: [code-tests, documentation] | ||
if: "!startsWith(github.ref, 'refs/heads/stable-')" | ||
|
||
env: | ||
LXD_DIR: "/var/lib/lxd" | ||
LXD_OIDC_CLIENT_ID: "gxj297yfAjmklILK5WqPWDSbtVBAeSQm" | ||
LXD_OIDC_ISSUER: "https://dev-xjrvvfikbsv4jxn7.us.auth0.com/" | ||
LXD_OIDC_AUDIENCE: "https://dev-xjrvvfikbsv4jxn7.us.auth0.com/api/v2/" | ||
LXD_OIDC_USER: "[email protected]" | ||
LXD_OIDC_PASSWORD: "lxd-ui-e2e-password" | ||
LXD_OIDC_GROUPS_CLAIM: "lxd-idp-groups" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
@@ -607,21 +614,23 @@ jobs: | |
export CGO_LDFLAGS="-L/home/runner/work/lxd/lxd-test/vendor/dqlite/.libs/" | ||
export LD_LIBRARY_PATH="/home/runner/work/lxd/lxd-test/vendor/dqlite/.libs/" | ||
export LXD_DOCUMENTATION="/home/runner/work/lxd/lxd/doc/_build/" | ||
export PATH="/home/runner/go/bin:$PATH" | ||
sudo rm -rf /var/lib/lxd | ||
sudo -E PATH=${PATH} LD_LIBRARY_PATH=${LD_LIBRARY_PATH} $(go env GOPATH)/bin/lxd --group sudo & | ||
- name: Setup LXD | ||
shell: bash | ||
run: | | ||
set -eux | ||
sudo LXD_DIR=/var/lib/lxd lxc storage create local-storage zfs | ||
sudo LXD_DIR=/var/lib/lxd lxc profile device add default root disk path=/ pool=local-storage | ||
sudo LXD_DIR=/var/lib/lxd lxc network create local-network | ||
sudo LXD_DIR=/var/lib/lxd lxc profile device add default eth0 nic network=local-network | ||
sudo LXD_DIR=/var/lib/lxd lxc config set core.https_address "[::]:8443" | ||
sudo LXD_DIR=/var/lib/lxd lxc config set cluster.https_address "127.0.0.1" | ||
sudo LXD_DIR=/var/lib/lxd lxc cluster enable local | ||
sudo LXD_DIR=/var/lib/lxd lxc config set user.show_permissions=true | ||
export PATH="/home/runner/go/bin:$PATH" | ||
sudo -E LXD_DIR=/var/lib/lxd lxc storage create local-storage zfs | ||
sudo -E LXD_DIR=/var/lib/lxd lxc profile device add default root disk path=/ pool=local-storage | ||
sudo -E LXD_DIR=/var/lib/lxd lxc network create local-network | ||
sudo -E LXD_DIR=/var/lib/lxd lxc profile device add default eth0 nic network=local-network | ||
sudo -E LXD_DIR=/var/lib/lxd lxc config set core.https_address "[::]:8443" | ||
sudo -E LXD_DIR=/var/lib/lxd lxc config set cluster.https_address "127.0.0.1" | ||
sudo -E LXD_DIR=/var/lib/lxd lxc cluster enable local | ||
sudo -E LXD_DIR=/var/lib/lxd lxc config set user.show_permissions=true | ||
- name: Checkout LXD-UI | ||
uses: actions/checkout@v4 | ||
|
@@ -673,15 +682,18 @@ jobs: | |
shell: bash | ||
run: | | ||
set -eux | ||
sudo LXD_DIR=/var/lib/lxd lxc config trust add lxd-ui/keys/lxd-ui.crt | ||
export PATH="/home/runner/go/bin:$PATH" | ||
sudo -E LXD_DIR=/var/lib/lxd lxc config trust add lxd-ui/keys/lxd-ui.crt | ||
- name: Create a custom image | ||
shell: bash | ||
run: | | ||
set -eux | ||
sudo LXD_DIR=/var/lib/lxd lxc launch ubuntu-minimal:22.04 my-instance | ||
sudo LXD_DIR=/var/lib/lxd lxc publish my-instance --alias my-custom-image --force | ||
sudo LXD_DIR=/var/lib/lxd lxc delete my-instance --force | ||
curl -L -o ubuntu-minimal.qcow2 https://cloud-images.ubuntu.com/minimal/releases/jammy/release/ubuntu-22.04-minimal-cloudimg-amd64.img & | ||
export PATH="/home/runner/go/bin:$PATH" | ||
sudo -E LXD_DIR=/var/lib/lxd lxc launch ubuntu-minimal:22.04 my-instance | ||
sudo -E LXD_DIR=/var/lib/lxd lxc publish my-instance --alias my-custom-image --force | ||
sudo -E LXD_DIR=/var/lib/lxd lxc delete my-instance --force | ||
- uses: actions/setup-node@v4 | ||
with: | ||
|
@@ -697,13 +709,15 @@ jobs: | |
shell: bash | ||
run: | | ||
set -eux | ||
sudo LXD_DIR=/var/lib/lxd PATH=/home/runner/go/bin:$PATH ./lxd-ui/tests/scripts/setup_test | ||
sudo -E LXD_DIR=/var/lib/lxd PATH=/home/runner/go/bin:$PATH ./lxd-ui/tests/scripts/setup_test | ||
- name: Run Playwright tests | ||
run: | | ||
set -eux | ||
cd lxd-ui | ||
CI=true DISABLE_VM_TESTS=true npx playwright test --project chromium:lxd-latest-edge | ||
sudo chown $USER -R /home/runner/.config | ||
sudo chown $USER /var/lib/lxd/unix.socket | ||
CI=true DISABLE_VM_TESTS=true LXD_DIR=/var/lib/lxd PATH=/home/runner/go/bin:$PATH npx playwright test --project chromium:lxd-latest-edge | ||
#npx playwright test --project chromium:lxd-5.21-edge | ||
#npx playwright test --project lxd-5.0-edge | ||
|