We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our build matrix is unnecessarily wide, which slows down each CI run (since separate VMs have to be spawned for each instance):
We can flatten this a bit by running debug/release and shared/static builds in the same release jobs, as separate steps.
The text was updated successfully, but these errors were encountered: