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

Reduce our build matrix #168

Open
woodruffw opened this issue Feb 25, 2022 · 0 comments
Open

Reduce our build matrix #168

woodruffw opened this issue Feb 25, 2022 · 0 comments

Comments

@woodruffw
Copy link
Member

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant