Skip to content

Nightly Pipeline #664

Nightly Pipeline

Nightly Pipeline #664

Workflow file for this run

name: Nightly Pipeline
on:
workflow_dispatch:
schedule:
# 00:15 am
- cron: '15 0 * * *'
jobs:
review:
name: Review Pipeline
uses: ./.github/workflows/step_review.yml
with:
PHP_VERSION: 7.4
# ------------------------------------------------------------------------------------------------------------------------
build:
name: Build Plugin
runs-on: ubuntu-latest
steps:
- name: Clone Code
uses: actions/checkout@v3
- name: Create Cache Directories
run: |
mkdir -p ~/.build
- name: Mount Build Cache
uses: actions/cache@v3
with:
key: cache-plugin-${{ github.run_id }}
path: ~/.build
- name: Build Plugin
uses: ./.github/actions/build-plugin
e2e:
name: E2E | Shopware ${{ matrix.shopware }}, PHP ${{ matrix.php }}
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- shopware: '6.6.10.1'
php: '8.3'
- shopware: '6.6.9.0'
php: '8.2'
- shopware: '6.6.6.0'
php: '8.2'
- shopware: '6.5.8.12'
php: '8.2'
- shopware: '6.5.6.1'
php: '8.2'
- shopware: '6.5.5.2'
php: '8.2'
- shopware: '6.5.4.1'
php: '8.2'
- shopware: '6.5.3.3'
php: '8.2'
- shopware: '6.5.3.0'
php: '8.2'
- shopware: '6.5.2.1'
php: '8.2'
- shopware: '6.5.1.1'
php: '8.2'
- shopware: '6.5.0.0'
php: '8.2'
- shopware: '6.4.20.2'
php: '8.2'
- shopware: '6.4.19.0'
php: '8.2'
- shopware: '6.4.18.0'
php: '8.2'
- shopware: '6.4.17.2'
php: '8.1'
- shopware: '6.4.17.1'
php: '8.1'
- shopware: '6.4.16.1'
php: '8.1'
- shopware: '6.4.15.2'
php: '8.1'
- shopware: '6.4.15.1'
php: '8.1'
- shopware: '6.4.14.0'
php: '8.1'
- shopware: '6.4.12.0'
php: '8.0'
- shopware: '6.4.11.1'
php: '8.0'
- shopware: '6.4.10.0'
php: '8.0'
- shopware: '6.4.9.0'
php: '7.4'
- shopware: '6.4.8.2'
php: '7.4'
- shopware: '6.4.7.0'
php: '7.4'
- shopware: '6.4.6.1'
php: '7.4'
- shopware: '6.4.5.1'
php: '7.4'
steps:
- name: Clone Code
uses: actions/checkout@v3
- name: Mount Build Cache
uses: actions/cache@v3
with:
key: cache-plugin-${{ github.run_id }}
path: ~/.build
- name: E2E Tests, Shopware ${{ matrix.shopware }}
uses: ./.github/actions/run-e2e
with:
# -------------------------------------------
SHOPWARE: ${{ matrix.shopware }}
PHP: ${{ matrix.php }}
# -------------------------------------------
MOLLIE_APIKEY_TEST: ${{ secrets.MOLLIE_APIKEY_TEST }}
# -------------------------------------------
RUN_CYPRESS: true
TESTRAIL: false
TESTRAIL_DOMAIN: ${{ secrets.TESTRAIL_DOMAIN }}
TESTRAIL_USERNAME: ${{ secrets.TESTRAIL_USERNAME }}
TESTRAIL_PASSWORD: ${{ secrets.TESTRAIL_PASSWORD }}