Skip to content

Commit

Permalink
Merge pull request #17 from networkservicemesh/af_packet
Browse files Browse the repository at this point in the history
Fix af_packet issue
  • Loading branch information
denis-tingaikin authored Nov 8, 2023
2 parents a46e6ce + 1f20ec7 commit 2484aa7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
apt install docker-ce -y
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-go@v1
- uses: actions/setup-go@v4
with:
go-version: 1.20.5
go-version: 1.20.8

# Use buildx to build for two platforms (amd64, arm64) in one image
- name: Docker Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dependent-repositories.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
path: networkservicemesh/${{ matrix.repository }}
repository: networkservicemesh/${{ matrix.repository }}
token: ${{ secrets.token }}
- uses: actions/setup-go@v1
- uses: actions/setup-go@v4
with:
go-version: 1.20.5
go-version: 1.20.8
- name: Update ${{ matrix.repository }} locally
working-directory: networkservicemesh/${{ matrix.repository }}
run: |
Expand Down
5 changes: 3 additions & 2 deletions patch/patch.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash
set -ex

git config --global user.name "John Doe"
git config --global user.email "johndoe@example.com"
git config user.name "John Doe"
git config user.email "johndoe@example.com"

function git_cherry_pick ()
{
Expand All @@ -15,6 +15,7 @@ function git_cherry_pick ()
# NSM cherry picks
git_cherry_pick refs/changes/03/39503/1 # 39503: vppinfra: fix setns typo | https://gerrit.fd.io/r/c/vpp/+/39503
git_cherry_pick refs/changes/28/39528/9 # 39528: ping: Simple binary API for running ping based on events | https://gerrit.fd.io/r/c/vpp/+/39528
git_cherry_pick refs/changes/24/39824/1 # 39824: af_packet: remove UNIX_FILE_EVENT_EDGE_TRIGGERED flag | https://gerrit.fd.io/r/c/vpp/+/39824

# Calico cherry picks
git_cherry_pick refs/changes/26/34726/3 # 34726: interface: add buffer stats api | https://gerrit.fd.io/r/c/vpp/+/34726
Expand Down

0 comments on commit 2484aa7

Please sign in to comment.