-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
roadiz-ci
committed
Jun 19, 2024
1 parent
0598caf
commit cfda0ed
Showing
390 changed files
with
6,703 additions
and
6,876 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
/dev.php | ||
/install.php | ||
/clear_cache.php | ||
/pimple.json | ||
/assets | ||
project_env.sh | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
node_js: | ||
- "14" | ||
php: | ||
- 8.0 | ||
- 8.1 | ||
- nightly | ||
dist: bionic | ||
stages: | ||
- "PHP lint tests" | ||
- "Backoffice assets tests" | ||
branches: | ||
except: | ||
- l10n_develop | ||
|
||
jobs: | ||
allow_failures: | ||
- php: nightly | ||
|
||
include: | ||
- stage: "Backoffice assets tests" | ||
language: node_js | ||
node_js: "14" | ||
script: sh .travis/backoffice_assets.sh | ||
|
||
- stage: "PHP lint tests" | ||
language: php | ||
sudo: required | ||
services: | ||
- mysql | ||
env: | ||
- DB=mysql | ||
- MYSQL_VERSION=5.7 | ||
- MYSQL_PASSWORD= | ||
php: 7.4 | ||
install: sh .travis/composer_install.sh | ||
script: sh .travis/php_lint.sh | ||
- stage: "PHP lint tests" | ||
language: php | ||
sudo: required | ||
services: | ||
- mysql | ||
env: | ||
- DB=mysql | ||
- MYSQL_VERSION=5.7 | ||
- MYSQL_PASSWORD= | ||
php: 8.0 | ||
install: sh .travis/composer_install.sh | ||
script: sh .travis/php_lint.sh | ||
- stage: "PHP lint tests" | ||
language: php | ||
sudo: required | ||
services: | ||
- mysql | ||
env: | ||
- DB=mysql | ||
- MYSQL_VERSION=5.7 | ||
- MYSQL_PASSWORD= | ||
php: 8.1 | ||
install: sh .travis/composer_install.sh | ||
script: sh .travis/php_lint.sh | ||
- stage: "PHP lint tests" | ||
language: php | ||
sudo: required | ||
services: | ||
- mysql | ||
env: | ||
- DB=mysql | ||
- MYSQL_VERSION=5.7 | ||
- MYSQL_PASSWORD= | ||
php: nightly | ||
install: sh .travis/composer_install.sh | ||
script: sh .travis/php_lint.sh | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -x | ||
cd src || exit 1; | ||
yarn install --pure-lockfile | ||
yarn run install | ||
yarn run build |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh -x | ||
phpenv config-rm xdebug.ini; | ||
curl -s http://getcomposer.org/installer | php; | ||
php composer.phar install --dev --no-interaction; |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -x | ||
vendor/bin/phpcs --report=full --report-file=./report.txt -p ./ || exit 1; | ||
vendor/bin/phpstan analyse -c phpstan.neon || exit 1; | ||
#vendor/bin/console lint:twig || exit 1; | ||
#vendor/bin/console lint:twig src/Resources/views || exit 1; |
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
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,4 +1,4 @@ | ||
{ | ||
"presets": ["env", "stage-0"], | ||
"presets": ["es2015", "stage-0"], | ||
"plugins": ["transform-runtime", "lodash"] | ||
} |
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
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.