On Thu, Feb 19, 2026 at 6:08 PM Ihar Hrachyshka via dev < [email protected]> wrote:
> This allows `act` (local github workflow runner) that uses posix shell > by default to run workflows. > > Signed-off-by: Ihar Hrachyshka <[email protected]> > --- > Hi Ihar, thank you for the v2. I think this patch needs to earlier in the series before the packaging workflow. Otherwise the CI fails: . .ci/linux-util.sh fix_etc_hosts shell: sh -e {0} /__w/_temp/e17aab61-baed-42f4-8223-57316871fef3.sh: 3: .ci/linux-util.sh: Syntax error: "(" unexpected .ci/linux-util.sh | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/.ci/linux-util.sh b/.ci/linux-util.sh > index e0f338e69..ad8409670 100755 > --- a/.ci/linux-util.sh > +++ b/.ci/linux-util.sh > @@ -1,6 +1,6 @@ > #!/bin/bash > > -function free_up_disk_space_ubuntu() > +free_up_disk_space_ubuntu() > { > local pkgs='azure-cli aspnetcore-* dotnet-* ghc-* firefox* > google-chrome-stable google-cloud-cli libmono-* llvm-* > @@ -18,7 +18,7 @@ function free_up_disk_space_ubuntu() > sudo rm -rf $paths > } > > -function set_containers_apparmor_profile() > +set_containers_apparmor_profile() > { > local profile=$1 > > @@ -31,7 +31,7 @@ function set_containers_apparmor_profile() > # https://github.com/actions/runner-images/issues/3353 > # https://github.com/actions/runner-images/issues/12192 > # Just clearing those out, if any. > -function fix_etc_hosts() > +fix_etc_hosts() > { > cp /etc/hosts ./hosts.bak > sed -E -n \ > @@ -43,7 +43,7 @@ function fix_etc_hosts() > > # Workaround until https://github.com/actions/runner-images/issues/10015 > # is resolved in some way. > -function disable_apparmor() > +disable_apparmor() > { > # https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/2093797 > sudo aa-teardown || true > -- > 2.52.0 > > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev > > Regards, Ales _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
