Skip to content

Commit 67f9d7c

Browse files
committed
all: require eFW 0.21.0
Update version strings to match reality and update the readme. Signed-off-by: Lorenz Bauer <[email protected]>
1 parent 49a06b1 commit 67f9d7c

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
TMPDIR: /tmp
1010
CI_MAX_KERNEL_VERSION: '6.11'
11-
CI_MAX_EFW_VERSION: '0.20.0'
11+
CI_MAX_EFW_VERSION: '0.21.0'
1212
CI_MIN_CLANG_VERSION: '13'
1313
go_version: '~1.24'
1414
prev_go_version: '~1.23'
@@ -238,7 +238,7 @@ jobs:
238238
GOMODCACHE: D:\gomodcache
239239
# Avoid putting temp on slow C:
240240
TEMP: D:\temp
241-
CI_EFW_VERSION: "0.20.0"
241+
CI_EFW_VERSION: "0.21.0"
242242

243243
steps:
244244
- run: mkdir D:\temp

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,10 @@ This library includes the following packages:
5959

6060
* A version of Go that is [supported by
6161
upstream](https://golang.org/doc/devel/release.html#policy)
62-
* CI is run against kernel.org LTS releases. >= 4.4 should work but EOL'ed versions
63-
are not supported.
62+
* Linux: CI is run against kernel.org LTS releases. >= 4.4 should work but EOL'ed
63+
versions are not supported.
64+
* Windows: CI is run against Windows Server 2022. Only the latest eBPF for Windows
65+
release is supported.
6466

6567
## License
6668

info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,4 +857,4 @@ var haveProgramInfoMapIDs = internal.NewFeatureTest("map IDs in program info", f
857857
}
858858

859859
return err
860-
}, "4.15", "windows:0.20.0")
860+
}, "4.15", "windows:0.21.0")

syscalls.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var haveNestedMaps = internal.NewFeatureTest("nested maps", func() error {
100100
return nil
101101
}
102102
return err
103-
}, "4.12", "windows:0.20.0")
103+
}, "4.12", "windows:0.21.0")
104104

105105
var haveMapMutabilityModifiers = internal.NewFeatureTest("read- and write-only maps", func() error {
106106
// This checks BPF_F_RDONLY_PROG and BPF_F_WRONLY_PROG. Since
@@ -214,7 +214,7 @@ var haveObjName = internal.NewFeatureTest("object names", func() error {
214214

215215
_ = fd.Close()
216216
return nil
217-
}, "4.15", "windows:0.20.0")
217+
}, "4.15", "windows:0.21.0")
218218

219219
var objNameAllowsDot = internal.NewFeatureTest("dot in object names", func() error {
220220
if platform.IsWindows {
@@ -241,7 +241,7 @@ var objNameAllowsDot = internal.NewFeatureTest("dot in object names", func() err
241241

242242
_ = fd.Close()
243243
return nil
244-
}, "5.2", "windows:0.20.0")
244+
}, "5.2", "windows:0.21.0")
245245

246246
var haveBatchAPI = internal.NewFeatureTest("map batch api", func() error {
247247
var maxEntries uint32 = 2

0 commit comments

Comments
 (0)