-
Notifications
You must be signed in to change notification settings - Fork 1.5k
ci: drop pouchdb-server from test matrix #8884
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
Closed
Closed
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7a4dbc6
ci: drop pouchdb-server from test matrix
b7a0e84
Merge remote-tracking branch 'upstream/master' into drop-pouchdb-serv…
6bc2202
Merge remote-tracking branch 'upstream/master' into drop-pouchdb-serv…
0e075b7
Remove more server types; SKIP_MIGRATION
eb1ab08
re-instate original GHA config
931472a
Remove pouchdb-server, express-pouchdb-minimum
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -45,25 +45,27 @@ jobs: | |
|
|
||
| # Run the integration, find and mapreduce tests against CouchDB on Node.js. | ||
| # This should be run against every version of CouchDB and every version of | ||
| # Node.js we support. | ||
| # Node.js we support. Also runs all the Node.js adapters against CouchDB. | ||
| # This should be run for every adapter on every version of Node.js we support. | ||
|
|
||
| couchdb-nodejs: | ||
| needs: lint | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| adapter: ['leveldb', 'memory'] | ||
| couchdb: ['2.3', '3.1'] | ||
| node: [14, 16] | ||
| cmd: | ||
| - npm test | ||
| - TYPE=find PLUGINS=pouchdb-find ADAPTERS=http npm test | ||
| - TYPE=mapreduce ADAPTERS=http npm test | ||
| - TYPE=find PLUGINS=pouchdb-find npm test | ||
| - TYPE=mapreduce npm test | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| ADAPTERS: ${{ matrix.adapter }} | ||
| CLIENT: node | ||
| SERVER: couchdb-master | ||
| COUCH_HOST: http://admin:[email protected]:5984 | ||
| SKIP_MIGRATION: 1 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
|
|
@@ -77,19 +79,11 @@ jobs: | |
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
|
|
||
| # Run the integration, find and mapreduce tests against CouchDB in the | ||
| # browser. This should be run against every version of CouchDB we support and | ||
| # every target browser. | ||
| # every target browser. Also runs all browser adapters against CouchDB. | ||
| # This should be run for every adapter on every target browser. | ||
|
|
||
| couchdb-browser: | ||
| needs: lint | ||
|
|
@@ -98,17 +92,18 @@ jobs: | |
| matrix: | ||
| couchdb: ['2.3','3.1'] | ||
| client: ['firefox', 'chromium', 'webkit'] | ||
| adapter: ['http', 'idb', 'indexeddb', 'memory'] | ||
| cmd: | ||
| - npm test | ||
| - TYPE=find PLUGINS=pouchdb-find ADAPTERS=http npm test | ||
| - TYPE=mapreduce ADAPTERS=http npm test | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| ADAPTERS: ${{ matrix.adapter }} | ||
| USE_MINIFIED: 1 | ||
| CLIENT: ${{ matrix.client }} | ||
| SERVER: couchdb-master | ||
| COUCH_HOST: http://admin:[email protected]:5984 | ||
| SKIP_MIGRATION: 1 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
|
|
@@ -123,137 +118,6 @@ jobs: | |
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
|
|
||
| # Run the integration, find and mapreduce tests against all the Node.js | ||
| # PouchDB adapters. This should be run for every adapter on every version of | ||
| # Node.js we support. | ||
|
|
||
| nodejs-adapter: | ||
| needs: lint | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| node: [14, 16] | ||
| adapter: ['leveldb', 'memory'] | ||
| cmd: | ||
| - npm test | ||
| - TYPE=find PLUGINS=pouchdb-find npm test | ||
| - TYPE=mapreduce npm test | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| CLIENT: node | ||
| ADAPTERS: ${{ matrix.adapter }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: ./.github/actions/install-node-package | ||
| with: | ||
| node-version: ${{ matrix.node }} | ||
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
|
|
||
| # Run the integration, find and mapreduce tests against all the browser-based | ||
| # adapters. PouchDB adapters. This should be run for every adapter on every | ||
| # target browser. | ||
|
|
||
| browser-adapter: | ||
| needs: lint | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| client: ['firefox', 'chromium', 'webkit'] | ||
| adapter: ['idb', 'indexeddb', 'memory'] | ||
| cmd: | ||
| - npm test | ||
| - TYPE=find PLUGINS=pouchdb-find npm test | ||
| - TYPE=mapreduce npm test | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| USE_MINIFIED: 1 | ||
| CLIENT: ${{ matrix.client }} | ||
| ADAPTERS: ${{ matrix.adapter }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: ./.github/actions/install-node-package | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| - uses: ./.github/actions/install-playwright | ||
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
|
|
||
| # Run the integration, find and mapreduce tests using pouchdb-server as the | ||
| # remote adapter. This checks that pouchdb-server works with the current | ||
| # PouchDB source tree. We run this on Node.js and on every target browser. | ||
| # Running against different versions of Node.js might require splitting this | ||
| # out into a distinct job. | ||
|
|
||
| pouchdb-server: | ||
| needs: lint | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| client: ['node', 'firefox', 'chromium', 'webkit'] | ||
| cmd: | ||
| - npm test | ||
| - TYPE=find PLUGINS=pouchdb-find ADAPTERS=http npm test | ||
| - TYPE=mapreduce ADAPTERS=http npm test | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| CLIENT: ${{ matrix.client }} | ||
| SERVER: pouchdb-server | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: ./.github/actions/install-node-package | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| - if: ${{ matrix.client != 'node' }} | ||
| uses: ./.github/actions/install-playwright | ||
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: ${{ matrix.cmd }} | ||
|
|
||
| # Run all the other testing tasks -- unit tests, and so on. These should be | ||
| # run on every version of Node.js that we support. | ||
|
|
@@ -271,7 +135,6 @@ jobs: | |
| - npm run test-unit | ||
| - npm run test-component | ||
| - npm run test-fuzzy | ||
| # - SERVER=pouchdb-server POUCHDB_SERVER_FLAGS=--in-memory PLUGINS=pouchdb-find npm run report-coverage | ||
| - npm run verify-build | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
|
|
@@ -284,12 +147,3 @@ jobs: | |
| - uses: ./.github/actions/build-pouchdb | ||
| - id: test | ||
| run: ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: First retry | ||
| id: retry | ||
| if: steps.test.outcome == 'failure' | ||
| run: git reset --hard && ${{ matrix.cmd }} | ||
| continue-on-error: true | ||
| - name: Second retry | ||
| if: steps.retry.outcome == 'failure' | ||
| run: git reset --hard && ${{ matrix.cmd }} | ||
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.