-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update workflows from templates
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
- Loading branch information
Showing
16 changed files
with
294 additions
and
190 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
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 |
---|---|---|
@@ -1,153 +1,157 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
# | ||
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: Cypress | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- stable* | ||
on: pull_request | ||
|
||
env: | ||
APP_NAME: deck | ||
CYPRESS_baseUrl: http://localhost:8081/index.php | ||
concurrency: | ||
group: cypress-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
cypress: | ||
env: | ||
# Adjust APP_NAME if your repository name is different | ||
APP_NAME: ${{ github.event.repository.name }} | ||
|
||
runs-on: 'ubuntu-latest' | ||
# This represents the server branch to checkout. | ||
# Usually it's the base branch of the PR, but for pushes it's the branch itself. | ||
# e.g. 'main', 'stable27' or 'feature/my-feature' | ||
# n.b. server will use head_ref, as we want to test the PR branch. | ||
BRANCH: ${{ github.base_ref || github.ref_name }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [20.x] | ||
# containers: [1, 2, 3] | ||
php-versions: [ '8.2' ] | ||
server-versions: [ 'master' ] | ||
jobs: | ||
init: | ||
runs-on: ubuntu-latest-low | ||
outputs: | ||
nodeVersion: ${{ steps.versions.outputs.nodeVersion }} | ||
npmVersion: ${{ steps.versions.outputs.npmVersion }} | ||
|
||
env: | ||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, apcu | ||
key: cache-v1 | ||
|
||
services: | ||
postgres: | ||
image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest | ||
ports: | ||
- 4444:5432/tcp | ||
env: | ||
POSTGRES_USER: root | ||
POSTGRES_PASSWORD: rootpassword | ||
POSTGRES_DB: nextcloud | ||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5 | ||
PUPPETEER_SKIP_DOWNLOAD: true | ||
|
||
steps: | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4.0.2 | ||
- name: Checkout app | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: Check composer.json | ||
id: check_composer | ||
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
files: "composer.json" | ||
|
||
- name: Register text Git reference | ||
run: | | ||
text_app_ref="$(if [ "${{ matrix.server-versions }}" = "master" ]; then echo -n "main"; else echo -n "${{ matrix.server-versions }}"; fi)" | ||
echo "text_app_ref=$text_app_ref" >> $GITHUB_ENV | ||
- name: Install composer dependencies | ||
if: steps.check_composer.outputs.files_exists == 'true' | ||
run: composer install --no-dev | ||
|
||
- name: Checkout server | ||
uses: actions/checkout@v4.1.7 | ||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 | ||
id: versions | ||
with: | ||
repository: nextcloud/server | ||
ref: ${{ matrix.server-versions }} | ||
fallbackNode: "^20" | ||
fallbackNpm: "^10" | ||
|
||
- name: Checkout submodules | ||
shell: bash | ||
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | ||
with: | ||
node-version: ${{ steps.versions.outputs.nodeVersion }} | ||
|
||
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} | ||
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' | ||
|
||
- name: Install node dependencies & build app | ||
run: | | ||
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | ||
git submodule sync --recursive | ||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 | ||
npm ci | ||
TESTING=true npm run build --if-present | ||
- name: Checkout ${{ env.APP_NAME }} | ||
uses: actions/checkout@v4.1.7 | ||
- name: Save context | ||
uses: buildjet/cache/save@e376f15c6ec6dc595375c78633174c7e5f92dc0e # v3 | ||
with: | ||
path: apps/${{ env.APP_NAME }} | ||
key: cypress-context-${{ github.run_id }} | ||
path: ./ | ||
|
||
- name: Checkout text | ||
uses: actions/checkout@v4.1.7 | ||
with: | ||
repository: nextcloud/text | ||
ref: ${{ env.text_app_ref }} | ||
path: apps/text | ||
cypress: | ||
runs-on: ubuntu-latest | ||
needs: init | ||
|
||
- name: Setup cache environment | ||
id: extcache | ||
uses: shivammathur/cache-extensions@v1 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: ${{ env.extensions }} | ||
key: ${{ env.key }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# Run multiple copies of the current job in parallel | ||
# Please increase the number or runners as your tests suite grows | ||
containers: ['component', '1', '2', '3'] | ||
|
||
- name: Cache extensions | ||
uses: actions/cache@v4 | ||
name: runner ${{ matrix.containers }} | ||
|
||
steps: | ||
- name: Restore context | ||
uses: buildjet/cache/restore@e376f15c6ec6dc595375c78633174c7e5f92dc0e # v3 | ||
with: | ||
path: ${{ steps.extcache.outputs.dir }} | ||
key: ${{ steps.extcache.outputs.key }} | ||
restore-keys: ${{ steps.extcache.outputs.key }} | ||
fail-on-cache-miss: true | ||
key: cypress-context-${{ github.run_id }} | ||
path: ./ | ||
|
||
- name: Set up php ${{ matrix.php-versions }} | ||
uses: shivammathur/setup-php@2.31.0 | ||
- name: Set up node ${{ needs.init.outputs.nodeVersion }} | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: ${{ env.extensions }} | ||
ini-values: | ||
apc.enable_cli=on | ||
coverage: none | ||
node-version: ${{ needs.init.outputs.nodeVersion }} | ||
|
||
- name: Install composer dependencies | ||
working-directory: apps/${{ env.APP_NAME }} | ||
run: | | ||
composer install --no-dev | ||
- name: Set up npm ${{ needs.init.outputs.npmVersion }} | ||
run: npm i -g 'npm@${{ needs.init.outputs.npmVersion }}' | ||
|
||
- name: Set up Nextcloud | ||
env: | ||
DB_PORT: 4444 | ||
PHP_CLI_SERVER_WORKERS: 20 | ||
run: | | ||
mkdir data | ||
echo '<?php $CONFIG=["memcache.local"=>"\OC\Memcache\APCu","hashing_default_password"=>true];' > config/config.php | ||
php occ maintenance:install --verbose --database=pgsql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin | ||
php occ background:cron | ||
php -f index.php | ||
php -S 0.0.0.0:8081 & | ||
export OC_PASS=1234561 | ||
php occ user:add --password-from-env user1 | ||
php occ user:add --password-from-env user2 | ||
php occ app:enable deck | ||
php occ app:list | ||
curl -v http://localhost:8081/index.php/login | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
- name: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} cypress tests | ||
uses: cypress-io/github-action@8d3918616d8ac34caa2b49afc8b408b6a872a6f5 # v6.7.1 | ||
with: | ||
build: npm run dev | ||
record: false | ||
parallel: false | ||
browser: chrome | ||
wait-on: '${{ env.CYPRESS_baseUrl }}' | ||
working-directory: 'apps/${{ env.APP_NAME }}' | ||
config: defaultCommandTimeout=10000,video=false | ||
record: ${{ secrets.CYPRESS_RECORD_KEY && true }} | ||
parallel: ${{ secrets.CYPRESS_RECORD_KEY && true }} | ||
# cypress run type | ||
component: ${{ matrix.containers == 'component' }} | ||
group: ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_GROUP }} | ||
# cypress env | ||
ci-build-id: ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_BUILD_ID }} | ||
tag: ${{ secrets.CYPRESS_RECORD_KEY && github.event_name }} | ||
env: | ||
# Needs to be prefixed with CYPRESS_ | ||
CYPRESS_BRANCH: ${{ env.BRANCH }} | ||
# https://github.com/cypress-io/github-action/issues/124 | ||
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} | ||
# Needed for some specific code workarounds | ||
TESTING: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | ||
npm_package_name: ${{ env.APP_NAME }} | ||
CYPRESS_BUILD_ID: ${{ github.sha }}-${{ github.run_number }} | ||
CYPRESS_GROUP: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} | ||
|
||
- name: Upload test failure screenshots | ||
uses: actions/upload-artifact@v4 | ||
if: failure() | ||
- name: Upload snapshots | ||
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | ||
if: always() | ||
with: | ||
name: Upload screenshots | ||
path: apps/${{ env.APP_NAME }}/cypress/screenshots/ | ||
retention-days: 5 | ||
name: snapshots_${{ matrix.containers }} | ||
path: cypress/snapshots | ||
|
||
- name: Upload nextcloud logs | ||
uses: actions/upload-artifact@v4 | ||
if: failure() | ||
- name: Extract NC logs | ||
if: failure() && matrix.containers != 'component' | ||
run: docker logs nextcloud-cypress-tests-${{ env.APP_NAME }} > nextcloud.log | ||
|
||
- name: Upload NC logs | ||
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | ||
if: failure() && matrix.containers != 'component' | ||
with: | ||
name: Upload nextcloud log | ||
path: data/nextcloud.log | ||
retention-days: 5 | ||
name: nc_logs_${{ matrix.containers }} | ||
path: nextcloud.log | ||
|
||
summary: | ||
runs-on: ubuntu-latest-low | ||
needs: [init, cypress] | ||
|
||
if: always() | ||
|
||
name: cypress-summary | ||
|
||
steps: | ||
- name: Summary status | ||
run: if ${{ needs.init.result != 'success' || ( needs.cypress.result != 'success' && needs.cypress.result != 'skipped' ) }}; then exit 1; fi |
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
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
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
Oops, something went wrong.