File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ php occ maintenance:mode --on
2+ php occ app:update --allow-unstable integration_openproject
3+ php occ db:add-missing-columns
4+ php occ db:add-missing-indices
5+ php occ db:add-missing-primary-keys
6+ php occ maintenance:mode --off
Original file line number Diff line number Diff line change 1- # SPDX-FileCopyrightText: 2023 Jankari Tech Pvt. Ltd.
2- # SPDX-License-Identifier: AGPL-3.0-or-later
3- name : CI
1+ # # SPDX-FileCopyrightText: 2023 Jankari Tech Pvt. Ltd.
2+ # # SPDX-License-Identifier: AGPL-3.0-or-later
3+ # name: CI
44
5- on :
6- push :
7- branches :
8- - ' master'
9- pull_request :
10- paths-ignore :
11- - ' **.md'
12- - ' **.txt'
13- - ' **.sh'
14- - ' dev/**'
15- - ' l10n/**'
16- - ' img/**'
17- - ' docker-compose*'
5+ # on:
6+ # push:
7+ # branches:
8+ # - 'master'
9+ # pull_request:
10+ # paths-ignore:
11+ # - '**.md'
12+ # - '**.txt'
13+ # - '**.sh'
14+ # - 'dev/**'
15+ # - 'l10n/**'
16+ # - 'img/**'
17+ # - 'docker-compose*'
1818
19- concurrency :
20- group : ${{ github.workflow }}-${{ github.ref }}
21- cancel-in-progress : true
19+ # concurrency:
20+ # group: ${{ github.workflow }}-${{ github.ref }}
21+ # cancel-in-progress: true
2222
23- jobs :
24- builds :
25- uses : ./.github/workflows/shared_workflow.yml
26- secrets : inherit
27- with :
28- branch : master
23+ # jobs:
24+ # builds:
25+ # uses: ./.github/workflows/shared_workflow.yml
26+ # secrets: inherit
27+ # with:
28+ # branch: master
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2023 Jankari Tech Pvt. Ltd.
2+ # SPDX-License-Identifier: AGPL-3.0-or-later
3+ name : CI
4+
5+ on :
6+ push :
7+ branches :
8+ - ' master'
9+ pull_request :
10+ paths-ignore :
11+ - ' **.md'
12+ - ' **.txt'
13+ - ' **.sh'
14+ - ' dev/**'
15+ - ' l10n/**'
16+ - ' img/**'
17+ - ' docker-compose*'
18+
19+ jobs :
20+ builds :
21+ name : Build and Test
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : path checking
25+ run : |
26+ pwd
27+ ls -l
28+
29+
30+ - name : Checkout server (for phpunit and psalm)
31+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
32+ with :
33+ submodules : true
34+ repository : nextcloud/server
35+ path : integration_openproject/server
36+ ref : stable33
37+
38+ - name : path checking
39+ run : |
40+ pwd
41+ ls -l
42+
43+ - name : path check
44+ run : |
45+ git clone https://github.com/nextcloud/integration_openproject.git
46+ cd integration_openproject
47+ git checkout release/3.0
48+ git branch
49+ git pull
You can’t perform that action at this time.
0 commit comments