No, it does not prevent pushing (as long as the pre-hooks work) but you cannot deploy from a failed pipeline/branch because you have defective software, as proven by failed tests.
neonred
Not quite.
- Every commit is just a local commit
- Every push runs pre-hooks which execute bunch of checks, for example linters, style checkers, etc. and prevent a push if something is not perfect
- After every push the CI/CD pipeline runs on origin
- Every run of the pipeline executes again checks with linters but also securoty checks for CVEs on dependencies and runtime
- Every pipeline run also executes all tests such as unit tests, scenario tests, integration tests
- If any of the above fails, the pipeline fails and stops
- Only if everything is okay, one can deploy on dev, the first stage
- Only if this is okay, the artifact gets pushed to the central artifact store
- Only if this suceesa a prod deployment can run, which pulls the artifact from the store
- Runners for dev and prod are distinct and don't have rights the other has, the only common contact point is the artifact store
That's an extremely very basic overview with many steps and concepts omitted but you get the idea.
If you have code that is not complete it is not qualified to be deployed. Cut work items into smaller chunks but never deploy not fully, 100% working and tested stuff. Not even on dev.
If you have tests you have to automate them and have a pipeline which stops any deployments when these tests fail. You definitely have a mindset issue and not a management or tool issue. I am not sorry but as a DevOps Engineer I can only say you guys are a lousy hack and should probably seek a different job.
works perfectly with my Arch Linux
If you don't tell them you're a sociopath.
No, no comment in the sense of I have no experience with 24h watches so I cannot comment on them regarding this topic. If others have experience they might add their share, which they did.
Thought as much but never had any experience with 24h watches, so no comment on this from my side :)
I have never seem a 24h wrist watch (I know they exist) aside from extremely seldom as wall clocks
No it's not, with a 12h format on an analog watch you can use the sun to find true north. It is also easier to read it when the hands have double the amount of degrees to indicate the number.
Edit -- digital watches should use 24h, I fully agree, maybe there was a misunderstanding because it's analog watches we're talking about here and these could stay 12h IMHO
Only main is protected, you can force push on feature branches.