From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BE11BC636C8 for ; Thu, 15 Jul 2021 20:47:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 98B5E613D9 for ; Thu, 15 Jul 2021 20:47:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234967AbhGOUub (ORCPT ); Thu, 15 Jul 2021 16:50:31 -0400 Received: from vmicros1.altlinux.org ([194.107.17.57]:57478 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231896AbhGOUub (ORCPT ); Thu, 15 Jul 2021 16:50:31 -0400 Received: from imap.altlinux.org (imap.altlinux.org [194.107.17.38]) by vmicros1.altlinux.org (Postfix) with ESMTP id E9ED672C8B4; Thu, 15 Jul 2021 23:47:35 +0300 (MSK) Received: from beacon.altlinux.org (unknown [193.43.10.9]) by imap.altlinux.org (Postfix) with ESMTPSA id C33BE4A46E9; Thu, 15 Jul 2021 23:47:35 +0300 (MSK) From: Vitaly Chikunov To: Mimi Zohar , Dmitry Kasatkin , linux-integrity@vger.kernel.org Subject: [PATCH ima-evm-utils v3] CI: Add support for ALT Linux Date: Thu, 15 Jul 2021 23:47:28 +0300 Message-Id: <20210715204728.3472552-1-vt@altlinux.org> X-Mailer: git-send-email 2.29.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-integrity@vger.kernel.org Build on Sisyphus branch which is bleeding edge repository. Package manager is apt-rpm (not APT as it may look from the scripts). Signed-off-by: Vitaly Chikunov --- Changes from v2: - Fix typo s/envirenment/environment/. Chnges from v1: - Fix skipping of gost algo tests. .github/workflows/ci.yml | 5 +++++ .travis.yml | 4 ++++ ci/alt.sh | 24 ++++++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100755 ci/alt.sh diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e0b1b0..088c041 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,6 +92,11 @@ jobs: CC: clang TSS: ibmtss + - container: "alt:sisyphus" + env: + CC: gcc + TSS: libtpm2-tss-devel + container: image: ${{ matrix.container }} env: ${{ matrix.env }} diff --git a/.travis.yml b/.travis.yml index 94fbb94..7a76273 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,6 +67,10 @@ matrix: env: DISTRO=debian:stable TSS=ibmtss compiler: gcc + - os: linux + env: DISTRO=alt:sisyphus TSS=libtpm2-tss-devel + compiler: gcc + before_install: # Tumbleweed requires podman and newest runc due docker incompatible with glibc 2.33 (faccessat2) - CONTAINER="${CONTAINER:-docker}" diff --git a/ci/alt.sh b/ci/alt.sh new file mode 100755 index 0000000..884c995 --- /dev/null +++ b/ci/alt.sh @@ -0,0 +1,24 @@ +#!/bin/sh -ex +# SPDX-License-Identifier: GPL-2.0-only +# +# Install build env for ALT Linux + +apt-get update -y + +# rpm-build brings basic build environment with gcc, make, autotools, etc. +apt-get install -y \ + $CC \ + $TSS \ + asciidoc \ + attr \ + docbook-style-xsl \ + libattr-devel \ + libkeyutils-devel \ + libssl-devel \ + openssl \ + openssl-gost-engine \ + rpm-build \ + wget \ + xsltproc \ + xxd \ + && control openssl-gost enabled -- 2.29.3