Skip to content

Commit

Permalink
Merge branch 'justafish/issue-204-acquia-integration' of github.com:L…
Browse files Browse the repository at this point in the history
…ullabot/drainpipe into justafish/issue-204-acquia-integration--v3
  • Loading branch information
beto-aveiga committed Feb 3, 2025
2 parents e24b4a7 + e629fd2 commit cb3df9b
Show file tree
Hide file tree
Showing 9 changed files with 301 additions and 278 deletions.
308 changes: 159 additions & 149 deletions .pnp.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"vlucas/phpdotenv": "^4|^5"
},
"require-dev": {
"composer/composer": "^2.8.3",
"composer/composer": "^2.8.5",
"phpunit/phpunit": "^9.6.21"
},
"extra": {
Expand Down
10 changes: 5 additions & 5 deletions drainpipe-dev/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
"behat/mink": "^1.12.0",
"behat/mink-browserkit-driver": "^2.2.0",
"davidrjonas/composer-lock-diff": "^1.7",
"drupal/coder": "^8.3.26",
"drupal/coder": "^8.3.28",
"lullabot/drainpipe": "*",
"mglaman/phpstan-drupal": "^1.3.2",
"mglaman/phpstan-drupal": "^2.0.1",
"mikey179/vfsstream": "^1.6.12",
"mockery/mockery": "^1.6.12",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpunit/phpunit": "^9|^10",
"symfony/phpunit-bridge": "^6|^7",
"symfony/yaml": "^6|^7",
"tijsverkoyen/convert-to-junit-xml": "^1.11.0",
"vincentlanglet/twig-cs-fixer": "^3.4.0"
"vincentlanglet/twig-cs-fixer": "^3.5.1"
},
"require-dev": {
"composer/composer": "^2.8.3"
"composer/composer": "^2.8.5"
},
"bin": [
"bin/drainpipe-convert-to-junit-xml"
Expand Down
2 changes: 1 addition & 1 deletion metapackages/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
"chokidar": "^3.6.0",
"esbuild": "^0.24.0",
"esbuild": "^0.24.2",
"yargs": "^17.7.2"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions metapackages/sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"gulp-sass-glob": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"modern-normalize": "^3.0.1",
"postcss": "^8.4.49",
"sass": "^1.83.0",
"postcss": "^8.5.1",
"sass": "^1.83.4",
"yargs": "^17.7.2"
},
"repository": {
Expand Down
5 changes: 4 additions & 1 deletion scaffold/gitlab/DDEV.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ cache:
- |
mkdir -p .ddev/homeadditions/.ssh
# Copy private key
if [ "$DRAINPIPE_DDEV_SSH_PRIVATE_KEY" != "" ]; then
if [ "$DRAINPIPE_SSH_PRIVATE_KEY_BASE64" != "" ]; then
echo "$DRAINPIPE_SSH_PRIVATE_KEY_BASE64" | base64 -d > .ddev/homeadditions/.ssh/id_rsa
chmod 600 .ddev/homeadditions/.ssh/id_rsa
elif [ "$DRAINPIPE_DDEV_SSH_PRIVATE_KEY" != "" ]; then
echo "$DRAINPIPE_DDEV_SSH_PRIVATE_KEY" > .ddev/homeadditions/.ssh/id_rsa
chmod 600 .ddev/homeadditions/.ssh/id_rsa
fi
Expand Down
2 changes: 1 addition & 1 deletion tasks/drupal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tasks:
- echo "🚮 Dropping existing database"
- ./vendor/bin/drush {{ .site }} sql:drop --yes
- echo "📰 Importing database"
- gunzip -k $DB_DIR/db.sql.gz
- gunzip --keep --force $DB_DIR/db.sql.gz
- ./vendor/bin/drush {{ .site }} sql:query --file=$DB_DIR/db.sql
- defer: rm -f $DB_DIR/db.sql
export-db:
Expand Down
2 changes: 1 addition & 1 deletion tasks/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tasks:
- |
DIRS_ARR=({{.YAML_DIRS}})
for DIR in "${DIRS_ARR[@]}"; do
./vendor/bin/yaml-lint $DIR
./vendor/bin/yaml-lint --parse-tags $DIR
done
- |
DIRS_ARR=({{.TWIG_DIRS}})
Expand Down
Loading

0 comments on commit cb3df9b

Please sign in to comment.