Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial packages update #3959

Merged
merged 15 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cypress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-artifact-${{ matrix.core.name }}-${{ matrix.testGroup }}
name: cypress-artifact-${{ matrix.esVersion }}-${{ matrix.core.name }}-${{ matrix.testGroup }}
retention-days: 2
path: |
${{ github.workspace }}/tests/cypress/screenshots/
Expand All @@ -98,7 +98,7 @@ jobs:

- name: Stop Elasticsearch
if: always()
run: cd bin/es-docker/ && docker-compose down
run: cd bin/es-docker/ && docker compose down

- name: Test plugin uninstall
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: sudo systemctl start mysql.service

- name: Setup Elasticsearch
run: cd bin/es-docker/ && docker-compose build --build-arg ES_VERSION=${{ matrix.esVersion }} && docker-compose up -d
run: cd bin/es-docker/ && docker compose build --build-arg ES_VERSION=${{ matrix.esVersion }} && docker compose up -d

- name: Check ES response
run: curl --connect-timeout 5 --max-time 10 --retry 5 --retry-max-time 40 --retry-all-errors http://127.0.0.1:8890
Expand Down
2 changes: 1 addition & 1 deletion bin/wp-env-cli
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function spawnCommandDirectly({ container, command, dockerComposeConfigPath }) {
];

return new Promise((resolve, reject) => {
const childProc = spawn('docker-compose', composeCommand, {
const childProc = spawn('docker compose', composeCommand, {
stdio: 'inherit',
shell: true,
});
Expand Down
Loading
Loading