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- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
1+ # This workflow will do a clean install of node dependencies, build the source
2+ # code and run tests across different versions of node
3+ # For more information see:
4+ # https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
35
46name : CI
57
@@ -16,12 +18,12 @@ jobs:
1618
1719 strategy :
1820 matrix :
19- os : [ubuntu-latest]
21+ os : [ ubuntu-latest ]
2022
2123 steps :
22- - uses : actions/checkout@v2
23- # Run the Solid test-suite
24- - name : Run the Solid test suite
25- shell : ' script -q -e -c "bash {0}"'
26- run : |
27- bash ./run-solid-test-suite.sh
24+ - uses : actions/checkout@v2
25+ # Run the Solid test-suite
26+ - name : Run the Solid test suite
27+ shell : ' script -q -e -c "bash {0}"'
28+ run : |
29+ bash ./run-solid-test-suite.sh
Original file line number Diff line number Diff line change 11---
22baseurl : /solid-nextcloud
3- description : A plugin to make Nextcloud compatible with Solid
3+ description : A plugin to make Nextcloud compatible with Solid
44repository : pdsinterop/solid-nextcloud
55title : Solid Nextcloud
66url : https://pdsinterop.org/
3333 exclude :
3434 - /
3535 - /404.html
36- favicon_ico : /favicon.ico
36+ favicon_ico : /favicon.ico
3737 main_title :
3838 link : ' /'
3939 recurse : true
4242aux_links :
4343 " PDS Interop on GitHub " :
4444 - https://github.com/pdsinterop
45- footer_content : ' <p xmlns:dct="http://purl.org/dc/terms/" property="dct:rights">Copyright © <span property="dct:dateCopyrighted">2020-2021</span> <span property="dct:publisher">PDS Interop</span>. Distributed under a <a rel="license" href="https://pdsinterop.org/license/">MIT license</a>.</p>'
45+ footer_content : |
46+ <p xmlns:dct="http://purl.org/dc/terms/" property="dct:rights">
47+ Copyright ©
48+ <span property="dct:dateCopyrighted">2020-2021</span>
49+ <span property="dct:publisher">PDS Interop</span>.
50+ Distributed under a
51+ <a rel="license" href="https://pdsinterop.org/license/">MIT license</a>.
52+ </p>
4653gh_edit_link : true
4754gh_edit_repository : https://github.com/pdsinterop/solid-nextcloud
4855logo : https://avatars3.githubusercontent.com/u/65920341
Original file line number Diff line number Diff line change 1- version : ' 3'
2-
3- services :
4- pubsub :
5- build :
6- context : https://github.com/pdsinterop/php-solid-pubsub-server.git#main
7- ports :
8- - 8080:8080
9- expose :
10- - 8080
11- depends_on :
12- - nextcloud
13- nextcloud :
14- build :
15- context : ./
16- dockerfile : Dockerfile
17- expose :
18- - 443
19- ports :
20- - 443:443
1+ version : ' 3'
2+
3+ services :
4+ pubsub :
5+ build :
6+ context : https://github.com/pdsinterop/php-solid-pubsub-server.git#main
7+ ports :
8+ - 8080:8080
9+ expose :
10+ - 8080
11+ depends_on :
12+ - nextcloud
13+ nextcloud :
14+ build :
15+ context : ./
16+ dockerfile : Dockerfile
17+ expose :
18+ - 443
19+ ports :
20+ - 443:443
Original file line number Diff line number Diff line change @@ -50,7 +50,14 @@ before_script:
5050 - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"; fi
5151 - cd nextcloud
5252 - mkdir data
53- - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
53+ - |
54+ ./occ maintenance:install \
55+ --admin-pass admin \
56+ --admin-user admin \
57+ --database $DB \
58+ --database-name oc_autotest \
59+ --database-pass='' \
60+ --database-user oc_autotest
5461 - ./occ app:enable solid
5562 - php -S localhost:8080 &
5663 - cd apps/solid
@@ -66,5 +73,5 @@ addons:
6673 mariadb : ' 10.1'
6774
6875services :
69- - postgresql
70- - mariadb
76+ - postgresql
77+ - mariadb
You can’t perform that action at this time.
0 commit comments