Skip to content

Commit

Permalink
chore: split out acceptance tests to || job
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjeffos committed Aug 13, 2021
1 parent a446c5a commit 875b9fa
Showing 1 changed file with 43 additions and 12 deletions.
55 changes: 43 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -505,84 +505,115 @@ workflows:
- dev-release:
name: Dev Release
node_version: '14'

- test-windows:
name: Windows, Node 14 - Packages, Jest, Acceptance, System tests
name: Windows, Node 14 - Packages, Jest, System tests
context: nodejs-install
node_version: '14.15.4'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-windows:
name: Windows, Node 14 - Acceptance tests
context: nodejs-install
node_version: '14.15.4'
acceptance_tests: true
- test-windows:
name: Windows, Node 14 - "Root" tap tests
context: nodejs-install
node_version: '14.15.4'
root_tap_tests: true

- test-windows:
name: Windows, Node 12 - Packages, Jest, Acceptance, System tests
name: Windows, Node 12 - Packages, Jest, System tests
context: nodejs-install
node_version: '12.21.0'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-windows:
name: Windows, Node 12 - Acceptance tests
context: nodejs-install
node_version: '12.21.0'
acceptance_tests: true
- test-windows:
name: Windows, Node 12 - "Root" tap tests
context: nodejs-install
node_version: '12.21.0'
root_tap_tests: true

- test-windows:
name: Windows, Node 10 - Packages, Jest, Acceptance, System tests
name: Windows, Node 10 - Packages, Jest, System tests
context: nodejs-install
node_version: '10.23.1'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-windows:
name: Windows, Node 10 - Acceptance tests
context: nodejs-install
node_version: '10.23.1'
acceptance_tests: true
- test-windows:
name: Windows, Node 10 - "Root" tap tests
context: nodejs-install
node_version: '10.23.1'
root_tap_tests: true

- test-linux:
name: Linux, Node 14 - Packages, Jest, Acceptance, System tests
name: Linux, Node 14 - Packages, Jest, System tests
context: nodejs-install
node_version: '14.15.4'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-linux:
name: Linux, Node 14 - Acceptance tests
context: nodejs-install
node_version: '14.15.4'
acceptance_tests: true
- test-linux:
name: Linux, Node 14 - "Root" tap tests
context: nodejs-install
node_version: '14.15.4'
root_tap_tests: true

- test-linux:
name: Linux, Node 12 - Packages, Jest, Acceptance, System tests
name: Linux, Node 12 - Packages, Jest, System tests
context: nodejs-install
node_version: '12.21.0'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-linux:
name: Linux, Node 12 - Acceptance
context: nodejs-install
node_version: '12.21.0'
acceptance_tests: true
- test-linux:
name: Linux, Node 12 - "Root" tap tests
context: nodejs-install
node_version: '12.21.0'
root_tap_tests: true

- test-linux:
name: Linux, Node 10 - Packages, Jest, Acceptance, System tests
name: Linux, Node 10 - Packages, Jest, System tests
context: nodejs-install
node_version: '10.23.1'
jest_tests: true
acceptance_tests: true
system_tests: true
package_tests: true
- test-linux:
name: Linux, Node 10 - Acceptance tests
context: nodejs-install
node_version: '10.23.1'
acceptance_tests: true
- test-linux:
name: Linux, Node 10 - "Root" tap tests
context: nodejs-install
node_version: '10.23.1'
root_tap_tests: true

- release:
name: Release
context: nodejs-app-release
Expand Down

0 comments on commit 875b9fa

Please sign in to comment.