Skip to content

Reduce our build matrix #168

@woodruffw

Description

@woodruffw

Our build matrix is unnecessarily wide, which slows down each CI run (since separate VMs have to be spawned for each instance):

  pe-parse:
    strategy:
      matrix:
        platform: ["ubuntu-18.04", "macos-latest"]
        build-type: ["Debug", "Release"]
        build-shared: ["0", "1"]
        compiler:
        - { CC: "clang", CXX: "clang++" }
        - { CC: "gcc", CXX: "g++" }
        exclude:
        - platform: macos-latest
          compiler: { CC: "gcc", CXX: "g++" }

We can flatten this a bit by running debug/release and shared/static builds in the same release jobs, as separate steps.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions