Skip to content

Commit

Permalink
Check for failed CI in API
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarGi committed Nov 30, 2023
1 parent 0389408 commit 4ddb04d
Show file tree
Hide file tree
Showing 5 changed files with 240 additions and 316 deletions.
116 changes: 107 additions & 9 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,114 @@
name: CI

on:
push:
branches:
- 'master'
- "master"
pull_request:
schedule:
- cron: '0 22 * * *' # run at 10 PM UTC
- cron: "0 22 * * *" # run at 10 PM UTC

name: CI

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
builds:
uses: ./.github/workflows/shared_workflow.yml
secrets: inherit
with:
branch: master
api-tests:
name: API tests
strategy:
matrix:
nextcloudVersion: [stable28]
phpVersionMajor: [8]
phpVersionMinor: [1]
database: [mysql]
runs-on: ubuntu-22.04
container:
image: ubuntu:22.04
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

defaults:
run:
working-directory: integration_openproject

services:
nextcloud:
image: ghcr.io/juliushaertl/nextcloud-dev-php${{ format('{0}{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}:latest@sha256:60493edf2097ee2a148e98511c7e8a5b2714e451fafccb3184e0d0477efef5d0
env:
SQL: ${{ matrix.database }}
SERVER_BRANCH: ${{ matrix.nextcloudVersion }}
NEXTCLOUD_AUTOINSTALL: "YES"
NEXTCLOUD_AUTOINSTALL_APPS: "viewer activity groupfolders integration_openproject"
NEXTCLOUD_TRUSTED_DOMAINS: nextcloud
VIRTUAL_HOST: "nextcloud"
WITH_REDIS: "NO"
NEXTCLOUD_AUTOINSTALL_APPS_WAIT_TIME: 120
volumes:
- /home/runner/work/integration_openproject/integration_openproject:/var/www/html/apps-shared

database-postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: nextcloud
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

database-mysql:
image: mariadb:10.5
env:
MYSQL_ROOT_PASSWORD: "nextcloud"
MYSQL_PASSWORD: "nextcloud"
MYSQL_USER: "nextcloud"
MYSQL_DATABASE: "nextcloud"
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: integration_openproject

- name: Checkout activity app
uses: actions/checkout@v3
with:
repository: nextcloud/activity
path: activity
ref: ${{ matrix.nextcloudVersion }}

- name: Checkout groupfolders app
uses: actions/checkout@v3
with:
repository: nextcloud/groupfolders
path: groupfolders
ref: ${{ matrix.nextcloudVersion }}

- name: Setup PHP ${{ format('{0}.{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}
uses: shivammathur/[email protected]
with:
php-version: ${{ format('{0}.{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}
tools: composer
extensions: intl

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache PHP dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/integration_openproject/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: API Tests
env:
NEXTCLOUD_BASE_URL: http://nextcloud
run: |
composer install --no-progress --prefer-dist --optimize-autoloader
until curl -s -f http://nextcloud/status.php | grep '"installed":true'; do echo .; sleep 10; done
make api-test
20 changes: 10 additions & 10 deletions .github/workflows/nighlty-ci-release-branch.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Nightly CI Release
# name: Nightly CI Release

on:
schedule:
- cron: '0 22 * * *' # run at 10 PM UTC
# on:
# schedule:
# - cron: '0 22 * * *' # run at 10 PM UTC

jobs:
builds:
uses: ./.github/workflows/shared_workflow.yml
secrets: inherit
with:
branch: release/2.4
# jobs:
# builds:
# uses: ./.github/workflows/shared_workflow.yml
# secrets: inherit
# with:
# branch: release/2.4
Loading

0 comments on commit 4ddb04d

Please sign in to comment.