Tim Stack
5d5fb67d8c
[release] tweak curl config again
2023-06-14 22:45:13 -07:00
Tim Stack
4a00433bec
[release] skip brew curl
2023-06-14 21:59:06 -07:00
tstack
ab12671308
Update tailer
2023-06-15 04:40:45 +00:00
Tim Stack
7713eb8242
[release] get prefix from brew
2023-06-14 21:40:19 -07:00
tstack
7b2ec36315
Update tailer
2023-06-15 04:36:50 +00:00
Tim Stack
06f259a03f
[release] fix configure for macos
2023-06-14 21:36:11 -07:00
Tim Stack
cc6b953595
[release] upload config.log for debugging
2023-06-14 21:30:27 -07:00
Tim Stack
2d5835897d
[release] add more packages
2023-06-14 16:21:08 -07:00
Tim Stack
34900a94c4
[release] try to build macos binary
2023-06-14 16:15:10 -07:00
Tim Stack
93c85b0e8e
[release] fix upload_url var name
2023-06-14 14:50:30 -07:00
Tim Stack
d69f0d80f9
[release] fix pkg script
2023-06-14 14:37:21 -07:00
Tim Stack
9a20df651c
[release] fix bins env
2023-06-14 14:24:44 -07:00
Tim Stack
54bcd6ccd7
[release] attempt to reuse bins workflow
2023-06-14 12:54:53 -07:00
Tim Stack
607fd96a38
[release] fix filenames
2023-06-14 09:17:02 -07:00
Tim Stack
ac848df0cf
[release] fix copy pasta
2023-06-14 09:04:04 -07:00
Tim Stack
7d24eb6144
[dist] make dist should work without doing a full build
2023-06-14 08:57:02 -07:00
Tim Stack
f4e28f5564
[release] add packages
2023-06-14 08:43:08 -07:00
Tim Stack
e4a7fa925b
[release] try to make releases through github actions
2023-06-14 08:40:09 -07:00
Tim Stack
7ccb467695
[build] fix some more warnings
2023-06-13 20:35:03 -07:00
Tim Stack
91730b7c3c
[cleanup] fix some warnings
2023-06-13 13:57:53 -07:00
Tim Stack
193fd7d8cc
[fmt] bump version to 10.0.0
2023-06-13 13:01:32 -07:00
Tim Stack
51841d40b8
[view] add selection column to lnav_views
...
related to #1149
2023-06-13 10:47:49 -07:00
Tim Stack
a8ef2c54d6
[build] fix artifact path
2023-06-12 08:41:46 -07:00
Tim Stack
f096824034
[build] general actions improvements
2023-06-12 08:30:49 -07:00
Tim Stack
5d63be60dc
[build] do checkout
2023-06-12 06:01:24 -07:00
Tim Stack
3744923604
[build] diff container approach
2023-06-12 05:59:05 -07:00
Tim Stack
aa8f152c5b
[build] call entrypoint
2023-06-12 05:51:09 -07:00
Tim Stack
5e8800872b
[build] try using prebuilt image
2023-06-12 05:46:39 -07:00
Tim Stack
fc67f704cc
[build] fix autogen path
2023-06-11 22:53:09 -07:00
Tim Stack
231a76c14b
[build] fix order of autogen
2023-06-11 22:36:48 -07:00
Tim Stack
a403788d90
[build] fix some typos
2023-06-11 22:22:01 -07:00
Tim Stack
1cc35fd6be
[build] move into extract
2023-06-11 21:58:26 -07:00
Tim Stack
b529ecf979
[build] move to dockerfile
2023-06-11 21:56:27 -07:00
Tim Stack
b357efea7a
[build] fix ncurses url
2023-06-11 21:42:13 -07:00
Tim Stack
7a08a54f59
[build] install deps
2023-06-11 21:40:27 -07:00
Tim Stack
4da325882b
[build] sh instead of bash?
2023-06-11 21:32:01 -07:00
Tim Stack
2771fe0b52
[build] sigh, no hash bang
2023-06-11 21:30:32 -07:00
Tim Stack
17d5bde24a
[build] set x bit
2023-06-11 21:29:34 -07:00
Tim Stack
2c478c921f
[build] downgrade alpine version
2023-06-11 21:27:12 -07:00
Tim Stack
156eb1d779
[build] more stuff
2023-06-11 21:25:24 -07:00
Tim Stack
1d18566b8d
[build] try to build musl using an action
2023-06-11 21:08:28 -07:00
Tim Stack
9f1cf33120
[release] bump deps
2023-06-09 21:13:39 -07:00
Tim Stack
dd21bdfd82
[text_filter] scrub ansi when testing a filter
...
Related to #1163
2023-06-09 08:43:14 -07:00
Tim Stack
f98f1e52c9
Merge pull request #1160 from he32/shift-overflow-fix
...
ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
2023-05-24 20:47:34 -07:00
Tim Stack
2d870dece8
Merge pull request #1159 from he32/isdigit-fix
...
strnatcmp.c: ensure correct value range for isdigit() argument.
2023-05-24 20:34:53 -07:00
Havard Eidnes
0b51752974
ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
...
Use the constants defined by <stdint.h> to avoid right-shift by 32
on a 32-bit host by comparing SIZE_MAX to UINT32_MAX, since `value`
is a size_t.
Found by building on NetBSD/macppc with -Wshift-count-overflow
(which is default on in the pkgsrc setup, which this is from).
./third-party/ArenaAlloc/arenaallocimpl.h:111:22: warning: right shift count >=
width of type [-Wshift-count-overflow]
111 | value |= value >> 32;
| ~~~~~~^~~~~
2023-05-24 23:03:44 +00:00
Havard Eidnes
f5daea2273
strnatcmp.c: ensure correct value range for isdigit() argument.
...
The valid values to pass to `isdigit()` is the values represented
by `unsigned char` and the value of EOF (usually -1). Other values
such as the other negative `signed char` values may invoke undefined
behaviour.
Fix this by casting the argument to `isdigit()` to `unsigned char`.
Found by building on NetBSD/macppc with -Wchar-subscripts turned on.
2023-05-24 22:57:37 +00:00
Tim Stack
34f026e444
[tests] unset NO_COLOR since it can affect the tests where color is captured in the output
...
Related to #1154
2023-05-23 21:04:08 -07:00
Tim Stack
9323958296
[args] fix handling of non-numeric text after colon in a path
...
Fixes #1155
2023-05-16 21:00:45 -07:00
Tim Stack
a324bc8c1c
[docs] add a note that level regexes are not anchored
...
Related to #1153
2023-05-06 10:29:38 -07:00