about summary refs log tree commit diff
path: root/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove the MakefileFranck Cuny2024-07-221-2/+0
|
* delete CI scriptFranck Cuny2024-05-041-4/+2
|
* delete more unused thingsFranck Cuny2024-04-281-24/+1
|
* replaced with https://github.com/fcuny/x509-infoFranck Cuny2024-04-281-1/+1
|
* print various environments variable from CIFranck Cuny2024-01-261-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 MakefileFranck Cuny2024-01-221-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.