Changes between Version 8 and Version 9 of Questions and Answers
- Timestamp:
- 04/29/25 16:53:23 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Questions and Answers
v8 v9 22 22 the matching vim is shadowed. 23 23 24 == CI / CD 25 26 '''Q:''' How do I guarantee that newer package versions are available on CI / CD? 27 28 '''A:''' 29 30 * Step 1 31 32 Run 33 34 {{{#!sh 35 guix refresh 36 }}} 37 38 on a twin machine to check for new package versions. 39 40 * Step 2 41 42 Run 43 44 {{{#!sh 45 guix graph 46 }}} 47 48 on the output of guix refresh to find dependencies 49 24 50 [WikiStart Back]