Fixes failure of "Release Binaries" github workflow run.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Do you need me to commit this for you? If so, what name and email should I use for the commit author?
username: charlesthobe
name: Charles the Thobe
my email is: charlesthethobe@gmail.com
commit message should be:
CI: run "apt update" once per job before installing packages
imo
Use "apt update" before "llvm/actions/install-ninja" which uses "apt install" without "apt update" beforehand
Apt update is now its own step for ease of readability and a less hacky looking solution with running it within the first step which installs packages
I apologize for the too many revisions, and that the initial patch wasn't in a production ready state, but it's now ready for merging, I believe.
.github/workflows/release-binaries.yml | ||
---|---|---|
65 | Comment on the original behavior: | |
85 | Comment on the original behavior: |
.github/workflows/release-binaries.yml | ||
---|---|---|
65 | Comment on the original behavior: |
these were just comments on why I don't have a check for ubuntu in this area, nothing needs to be done.
Comment on the original behavior:
The matrix only has one element in the "runs-on" array which is "ubuntu-22.04-8x32" so a check for the runner OS or the value of the array element isn't needed, also the check is absent from other checks, if in the future this matrix array is going to be expanded then checks are gonna have to be added.