3.0.4 (#77) #215
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
# SPDX-FileCopyrightText: Nextcloud contributors | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: Integration test | |
on: | |
pull_request: | |
paths: | |
- main.py | |
- config.cpu.yaml | |
- config.gpu.yaml | |
- context_chat_backend/** | |
- appinfo/** | |
- example.env | |
- hwdetect.sh | |
- persistent_storage/** | |
push: | |
branches: | |
- master | |
paths: | |
- main.py | |
- config.cpu.yaml | |
- config.gpu.yaml | |
- context_chat_backend/** | |
- appinfo/** | |
- example.env | |
- hwdetect.sh | |
- persistent_storage/** | |
concurrency: | |
group: integration-test-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
transcription: | |
runs-on: ubuntu-22.04 | |
strategy: | |
# do not stop on another job's failure | |
fail-fast: false | |
matrix: | |
php-versions: [ '8.1' ] | |
databases: [ 'sqlite' ] | |
server-versions: [ 'master' ] | |
name: Integration test on ${{ matrix.server-versions }} php@${{ matrix.php-versions }} | |
env: | |
MYSQL_PORT: 4444 | |
PGSQL_PORT: 4445 | |
services: | |
mysql: | |
image: mariadb:10.5 | |
ports: | |
- 4444:3306/tcp | |
env: | |
MYSQL_ROOT_PASSWORD: rootpassword | |
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5 | |
postgres: | |
image: postgres | |
ports: | |
- 4445: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 | |
steps: | |
- name: Checkout server | |
uses: actions/checkout@v4 | |
with: | |
repository: nextcloud/server | |
ref: ${{ matrix.server-versions }} | |
- name: Checkout submodules | |
shell: bash | |
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 | |
- name: Set up php ${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: phpunit | |
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_mysql, pdo_sqlite, pgsql, pdo_pgsql, gd, zip | |
- name: Checkout context_chat php app | |
uses: actions/checkout@v4 | |
with: | |
repository: nextcloud/context_chat | |
path: apps/context_chat | |
- name: Checkout AppAPI | |
uses: actions/checkout@v4 | |
with: | |
repository: cloud-py-api/app_api | |
path: apps/app_api | |
- name: Checkout backend | |
uses: actions/checkout@v4 | |
with: | |
path: context_chat_backend/ | |
- name: Set up Nextcloud MYSQL | |
if: ${{ matrix.databases != 'pgsql'}} | |
run: | | |
sleep 25 | |
mkdir data | |
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$MYSQL_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password | |
php -S localhost:8080 & | |
- name: Set up Nextcloud PGSQL | |
if: ${{ matrix.databases == 'pgsql'}} | |
run: | | |
sleep 25 | |
mkdir data | |
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$PGSQL_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password | |
php -S localhost:8080 & | |
- name: Enable context_chat and app_api | |
run: ./occ app:enable -vvv -f context_chat app_api testing | |
- name: Checkout documentation | |
uses: actions/checkout@v4 | |
with: | |
repository: nextcloud/documentation | |
path: data/admin/files/documentation | |
- name: Prepare docs | |
run: | | |
cd data/admin/files/documentation | |
find ./admin_manual/ -depth -name "*.rst" -exec sh -c 'mv "$1" "${1%.rst}.txt"' _ {} \; | |
git status | |
- name: Setup python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements.txt | |
- name: Install and init backend | |
run: | | |
cd context_chat_backend | |
pip install --upgrade pip setuptools wheel | |
pip install --no-deps -r requirements.txt | |
cp example.env .env | |
echo "NEXTCLOUD_URL=http://localhost:8080" >> .env | |
./main.py &> backend_logs & | |
- name: Register backend | |
run: | | |
./occ app_api:daemon:register --net host manual_install "Manual Install" manual-install http localhost http://localhost:8080 | |
./occ app_api:app:register context_chat_backend manual_install --json-info "{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"3.0.4\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" --force-scopes --wait-finish | |
- name: Scan files | |
run: | | |
./occ files:scan --all | |
./occ context_chat:scan -m text/plain admin | |
- name: Run the prompts | |
run: | | |
./occ background-job:worker 'OC\TaskProcessing\SynchronousBackgroundJob' & | |
./occ background-job:worker 'OC\TaskProcessing\SynchronousBackgroundJob' & | |
./occ context_chat:prompt admin "Which factors are taken into account for the Ethical AI Rating?" | |
./occ context_chat:prompt admin "Welche Faktoren beeinflussen das Ethical AI Rating?" | |
- name: Show logs | |
if: always() | |
run: | | |
tail data/nextcloud.log | |
echo '--------------------------------------------------' | |
[ -f context_chat_backend/backend_logs ] && cat context_chat_backend/backend_logs || echo "No backend logs" |