Skip to content

Commit

Permalink
chore(ci/arm64): Add Ubuntu 24.04 e2e test on ARM64 architecture (#169)
Browse files Browse the repository at this point in the history
* chore(ci/arm64): Add Ubuntu 24.04 e2e test on ARM64 architecture

* fix typo

* update readme
  • Loading branch information
mozillazg authored Oct 20, 2024
1 parent 1ef0057 commit 86ded2a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ executors:
ubuntu-22-04:
machine:
image: ubuntu-2204:2024.04.4
ubuntu-24-04:
machine:
image: ubuntu-2404:2024.05.1

jobs:
arm64-e2e:
Expand Down Expand Up @@ -280,6 +283,7 @@ workflows:
os:
- ubuntu-20-04
- ubuntu-22-04
- ubuntu-24-04
- docker-e2e
- containerd-e2e
- k8s-1-30-e2e
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Flags:

### Dependencies

* Go >= 1.22
* Go >= 1.23
* Clang/LLVM >= 14
* Bison >= 3.8
* Lex/Flex >= 2.6
Expand Down
3 changes: 2 additions & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,13 @@ Flags:
开发环境需要安装的系统依赖:


* Go >= 1.22
* Go >= 1.23
* Clang/LLVM >= 14
* Bison >= 3.8
* Lex/Flex >= 2.6
* GCC
* GNU make
* autoconf


### Building
Expand Down
4 changes: 2 additions & 2 deletions testdata/test_sub_curl_domain_program.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ function test_ptcpdump() {

cat "${LNAME}"
cat "${LNAME}" | grep '/usr/bin/curl'
cat "${LNAME}" | grep -F '.80: Flags [.],'
cat "${LNAME}" | grep -F '.80: Flags [S],'
}

function test_tcpdump_read() {
which tcpdump || (apt update || true && apt install -y tcpdump)
tcpdump -nr "${FNAME}"
tcpdump -nr "${FNAME}" | grep -F '.80: Flags [.],' # ACK
tcpdump -nr "${FNAME}" | grep -F '.80: Flags [S],' # SYN
}

function test_ptcpdump_read() {
Expand Down

0 comments on commit 86ded2a

Please sign in to comment.