CI - Integration Tests #1059
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
name: "CI - Integration Tests" | |
on: | |
schedule: | |
# at 9:45 UTC every day from Monday to Friday | |
- cron: "45 9 * * 1-5" | |
# allow running manually | |
workflow_dispatch: | |
jobs: | |
integration-tests: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
# do not run scheduled jobs in forks, in forks only allow manual run ("workflow_dispatch") | |
if: github.repository_owner == 'openSUSE' || github.event_name == 'workflow_dispatch' | |
steps: | |
# TODO: Reuse/share building the frontend and backend with the other steps | |
# TODO: Cache the Ruby gems and node packages | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Created shared YaST log directory | |
run: mkdir -p /tmp/log/YaST2 | |
- name: Start container | |
run: podman run --privileged --detach --name agama --ipc=host -e CI -e GITHUB_ACTIONS -v /dev:/dev -v .:/checkout -v /tmp/log/YaST2:/var/log/YaST2 registry.opensuse.org/systemsmanagement/agama/staging/containers/opensuse/agama-testing:latest | |
- name: Environment | |
run: podman exec agama bash -c "env | sort" | |
- name: Build the frontend | |
run: podman exec agama bash -c "cd /checkout/web && npm install && make" | |
- name: Install the frontend | |
run: podman exec agama bash -c "ln -snfv /checkout/web/dist /usr/share/cockpit/agama" | |
# ./setup-services.sh will try setting up cockpit.socket | |
# which has a login page, so this local-session needs to be first | |
- name: Start Cockpit service | |
run: podman exec --detach agama /usr/libexec/cockpit-ws --local-session=/usr/bin/cockpit-bridge | |
- name: Setup service | |
run: podman exec agama bash -c "cd /checkout; ./setup-services.sh" | |
- name: Set a testing Agama configuration | |
# use just one product, it skips the product selection at the beginning | |
run: podman exec agama bash -c "rm /checkout/products.d/ALP-Dolomite.yaml" | |
- name: Show NetworkManager log | |
run: podman exec agama journalctl -u NetworkManager | |
- name: Show the D-Bus services log | |
run: podman exec agama bash -c "journalctl | grep agama" | |
- name: Check D-Bus socket | |
run: podman exec agama ls -l /var/run/dbus/system_bus_socket | |
- name: Run the Agama smoke test | |
run: podman exec agama curl http://localhost:9090/cockpit/@localhost/agama/index.html | |
- name: Check Playwright version | |
run: podman exec agama playwright --version | |
- name: Run the Playwright tests | |
# user authentication is not required when cockpit runs a local session | |
# run the tests in the Chromium browser | |
run: podman exec agama bash -c "cd /checkout/playwright && SKIP_LOGIN=true playwright test --trace on --project chromium" | |
- name: Again show the D-Bus services log | |
run: podman exec agama bash -c "journalctl | grep agama" | |
- name: Show the complete journal | |
# maybe not necessary if the above filtered journalctl calls are enough | |
run: podman exec agama journalctl -b || echo "journal failed with $?" | |
- name: Upload the test results | |
uses: actions/upload-artifact@v3 | |
# run even when any previous step fails | |
if: always() | |
with: | |
name: test-results | |
retention-days: 30 | |
path: | | |
playwright/test-results/**/* | |
/tmp/log/YaST2/y2log | |
- name: IRC notification | |
# see https://github.com/marketplace/actions/irc-message-action | |
uses: Gottox/irc-message-action@v2 | |
# never run in forks | |
if: failure() && github.repository_owner == 'openSUSE' | |
with: | |
channel: "#yast" | |
nickname: github-action | |
message: "Agama integration test failed: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" |