Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | delete CI script | Franck Cuny | 2024-05-04 | 1 | -4/+2 |
| | |||||
* | delete more unused things | Franck Cuny | 2024-04-28 | 1 | -24/+1 |
| | |||||
* | replaced with https://github.com/fcuny/x509-info | Franck Cuny | 2024-04-28 | 1 | -1/+1 |
| | |||||
* | print various environments variable from CI | Franck Cuny | 2024-01-26 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | CI is currently failing with the following error: ``` go: errors parsing go.mod: /home/runner/work/world/world/go.mod:3: invalid go version '1.21.4': must match format 1.23 ``` From [1]: > Before Go 1.21, the initial release of a Go toolchain was version 1.N, not 1.N.0 which makes me think that I'm CI is running with a version of go older than 1.21, while I specify 1.21 in my nix config. If that's the case, something is not correct in the CI environment and I should fix it. Hopefully the script will give me the information I need to debug this. [1] https://go.dev/doc/toolchain#version | ||||
* | build all the binaries using a Makefile | Franck Cuny | 2024-01-22 | 1 | -0/+24 |
Add a Makefile to build the local binaries. Rename all the commands without a dash. We can build the commands with `make all` or by being explicit, for example `make bin/x509-info`. Add a common package to keep track of build information (commit and build date) so we can reuse the same pattern across all the commands. |