Skip to content

Commit

Permalink
Merge branch 'main' into GL-1723
Browse files Browse the repository at this point in the history
  • Loading branch information
akashkska authored Oct 31, 2023
2 parents 828d644 + b1a1914 commit 7fcd8a1
Show file tree
Hide file tree
Showing 16 changed files with 688 additions and 838 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-22.04"]
php: ["8.0", "8.1", "8.2"]
php: ["8.1", "8.2"]
coverage: ["none"]
include:
- os: "ubuntu-22.04"
Expand Down Expand Up @@ -110,12 +110,12 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: acli.phar
path: build/acli.phar
path: var/acli.phar
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/acli.phar
files: var/acli.phar
# Require all checks to pass without having to enumerate them in the branch protection UI.
# @see https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957
check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.2
tools: composer:v2
coverage: pcov

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

drupal
.idea
build
*.bak
.DS_STORE

Expand Down
3 changes: 1 addition & 2 deletions .phplint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
path: ./
jobs: 10
cache: build/phplint.cache
cache: var/phplint.cache
extensions:
- php
exclude:
- build
- var
- vendor
warning: false
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Any changes to the `acli update` command should be manually tested using the fol

1. Replace `@package_version@` on this line with `1.0.0` or any older version string: https://github.com/acquia/cli/blob/v1.0.0/bin/acli#L84
1. Build acli.phar as described above.
1. Now test: `./build/acli.phar self:update`
1. Now test: `./var/acli.phar self:update`

### Writing tests

Expand Down
13 changes: 0 additions & 13 deletions Dockerfile

This file was deleted.

312 changes: 0 additions & 312 deletions assets/symfony-console-rst.patch

This file was deleted.

Loading

0 comments on commit 7fcd8a1

Please sign in to comment.