diff mbox series

[2/4] ci: drop travis config

Message ID 20240202190823.418148-3-lucas.de.marchi@gmail.com (mailing list archive)
State New
Headers show
Series Drop what's not maintained | expand

Commit Message

Lucas De Marchi Feb. 2, 2024, 7:08 p.m. UTC
We are not using travis anymore for CI. Drop its configuration.

Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
---
 .travis.yml | 32 --------------------------------
 1 file changed, 32 deletions(-)
 delete mode 100644 .travis.yml

Comments

Luis Chamberlain Feb. 6, 2024, 5:58 p.m. UTC | #1
On Fri, Feb 02, 2024 at 01:08:21PM -0600, Lucas De Marchi wrote:
> We are not using travis anymore for CI. Drop its configuration.
> 
> Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>

What is being used to CI testing for userspace?
 
  Luis
Lucas De Marchi Feb. 7, 2024, 5:08 a.m. UTC | #2
On Tue, Feb 06, 2024 at 09:58:19AM -0800, Luis Chamberlain wrote:
>On Fri, Feb 02, 2024 at 01:08:21PM -0600, Lucas De Marchi wrote:
>> We are not using travis anymore for CI. Drop its configuration.
>>
>> Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
>
>What is being used to CI testing for userspace?

currently it's basically the testsuite being executed manually.
I had it using github-actions some time ago and may add it back.

Lucas De Marchi

>
>  Luis
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 64dd6cd..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,32 +0,0 @@ 
-language: c
-dist: focal
-
-matrix:
-  include:
-    - compiler: gcc
-      env: CC=gcc
-    - compiler: clang
-      env: CC=clang
-
-before_install:
-  - sudo apt-get update -qq
-  - sudo apt-get install -qq libzstd-dev zstd
-  - sudo apt-get install -qq liblzma-dev
-  - sudo apt-get install -qq zlib1g-dev
-  - sudo apt-get install -qq xsltproc docbook-xsl
-  - sudo apt-get install -qq cython
-  - sudo apt-get install -qq linux-headers-generic
-
-before_script:
-  - export KDIR="$(find  /lib/modules/* -maxdepth  1 -name build | sort -n --reverse | head -1)"
-
-script:
-  - ./autogen.sh c --without-openssl && make -j
-  - make -j check
-
-notifications:
-  irc:
-    channels:
-      - "irc.freenode.org#kmod"
-    template:
-      - "%{commit}: %{author} - %{message}"