-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: update pasta (2023_11_19.4f1709d)
This version added the support for automatic UDP forwarding. https://passt.top/passt/commit/?h=2023_11_19.4f1709d&id=457ff122e33cf6a6e559b073f41c530e42d9c597 Fix issue 383 Signed-off-by: Akihiro Suda <[email protected]>
- Loading branch information
1 parent
dbe8643
commit 97e6056
Showing
5 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04 | |
ARG SHADOW_VERSION=4.13 | ||
ARG SLIRP4NETNS_VERSION=v1.2.0 | ||
ARG VPNKIT_VERSION=0.5.0 | ||
ARG PASST_VERSION=2023_06_27.289301b | ||
ARG PASST_VERSION=2023_11_19.4f1709d | ||
ARG DOCKER_VERSION=24.0.2 | ||
ARG DOCKER_CHANNEL=stable | ||
|
||
|
@@ -53,6 +53,15 @@ RUN git clone https://passt.top/passt | |
WORKDIR /passt | ||
ARG PASST_VERSION | ||
RUN git pull && git checkout $PASST_VERSION | ||
# <TMP> | ||
# [PATCH] port_fwd, util: Don't bind UDP ports with opposite-side bound TCP ports | ||
# https://archives.passt.top/passt-dev/[email protected]/ | ||
ADD https://archives.passt.top/passt-dev/[email protected]/t.mbox.gz . | ||
RUN gunzip t.mbox.gz && \ | ||
git config --global user.email "dummy@localhost" && \ | ||
git config --global user.name "Dummy user" && \ | ||
git am t.mbox | ||
# </TMP> | ||
RUN make && make install | ||
|
||
FROM ubuntu:${UBUNTU_VERSION} AS test-integration | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters