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

Add NIGHTLY variable to CI script #467

Merged
merged 2 commits into from Jun 29, 2022

Commits on Jun 29, 2022

  1. Add NIGHTLY variable to CI script

    We are currently using the DO_BENCH variable as a proxy for whether or
    not we are using a nightly toolchain, while this is technically correct
    we use it from within an if guarded statement that is guarded by
    DO_FEATURE_MATRIX and we never run the CI script with _both_ of these
    variables set to true. This means that the all features test is never
    being run.
    
    Add a NIGHTLY variable and set it based on the output of `cargo
    --version`.
    tcharding committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    69349a8 View commit details
    Browse the repository at this point in the history
  2. Conditionally compile the hex macro

    We only use this macro when not fuzzing, add a cfg attribute to build it
    in only when needed.
    tcharding committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    5f611f6 View commit details
    Browse the repository at this point in the history