You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The goal of this issue is to figure out why the ci-base-image does not seem to have both the stable and nightly rust toolchains installed when running in CI.
Acceptance Criteria:
Determine the status of the nightly toolchain install in the ci-base-image
Remove redundant rust install commands or remove nightly install from ci-base-image
The text was updated successfully, but these errors were encountered:
This PR aims to remove the `rustup install toolchain nightly` commands from the individual
GitHub jobs that use the `ci-base-image` that previously did not have the `nightly` toolchain.
Closes#1727
# Discussion
The changes in the previous PR (#1700) to add the `nightly` toolchain to `ci-base-image` were
not published to DockerHub until the `merge-pr.yml` workflow actions were successfully run.
Therefore the `nightly` toolchain was not available for CI to use in `ci-base-image`.
In that PR, the `nightly` toolchain was installed in the individual jobs where it was needed to pass CI.
Now that the PR has been merged, `ci-base-image` has been updated with both the `stable`
and `nightly` toolchains and the redundant `rustup install` commands can be removed from `verify-pr-commit.yml`.
…ci-base-image update (#1728)
# Goal
This PR aims to remove the `rustup install toolchain nightly` commands
from the individual GitHub jobs that use the `ci-base-image` that
previously did not have the `nightly` toolchain.
Closes#1727
# Discussion
The changes in the previous PR (#1700) to add the `nightly` toolchain to
`ci-base-image` were not published to DockerHub until the `merge-pr.yml`
workflow actions were successfully run. Therefore the `nightly`
toolchain was not available for CI to use in `ci-base-image`.
In that PR, the `nightly` toolchain was installed in the individual jobs
where it was needed to pass CI.
Now that the PR has been merged, `ci-base-image` has been updated with
both the `stable` and `nightly` toolchains and the redundant `rustup
install` commands can be removed from `verify-pr-commit.yml`.
Co-authored-by: Matthew Orris <--help>
The goal of this issue is to figure out why the ci-base-image does not seem to have both the stable and nightly rust toolchains installed when running in CI.
Acceptance Criteria:
The text was updated successfully, but these errors were encountered: