简体   繁体   中英

Need to run test suites on different platforms

As part of our Pipeline i need to run tests on Linux, Windos & MAC. is there any built in option or best practices for such task? any examples?

I am expecting if there is any feasible inbuilt option in pipeline to achieve this

matrix step type in pipelines can be used here https://www.jfrog.com/confluence/display/JFROG/Matrix by passing the nodepool options as part of stepletMutipliers. sample step:

steps:
- name: step_1
  type: Matrix
  stepMode: Bash
  configuration:
    multiNode: true
  stepletMultipliers:
    environmentVariables:
      - foo: foo
      - bar: bar
    nodePools:
      - winNodePool
      - u20NodePool

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM