From 9a86a3dd68f054d47e1a93b8dec03d51479554f4 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 21 Dec 2022 18:51:20 +0100 Subject: travis: Drop support. Following a change in the terms of use, free Travis credits are really too low for a realistic usage by OVS contributors. As a consequence, testing OVS with Travis has been abandoned by most (if not all) contributors to the project. Drop the Travis configuration from our repository, clean references in the documentation and move GHA specifics to the association yml. Acked-by: Aaron Conole Signed-off-by: David Marchand Signed-off-by: Ilya Maximets --- .github/workflows/build-and-test.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows/build-and-test.yml') diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e08d7b1ba..1949d1200 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -133,8 +133,12 @@ jobs: - name: install common dependencies run: sudo apt install -y ${{ env.dependencies }} - name: install libunbound libunwind + # GitHub Actions doesn't have 32-bit versions of these libraries. if: matrix.m32 == '' run: sudo apt install -y libunbound-dev libunwind-dev + - name: install 32-bit libraries + if: matrix.m32 != '' + run: sudo apt install -y gcc-multilib - name: prepare run: ./.ci/linux-prepare.sh -- cgit v1.2.1