mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-30 23:53:37 +02:00

in both GitHub Actions and Travis. groovy is EOL, which is probably the reason why it's archives has been removed: Ign:1 http://security.ubuntu.com/ubuntu groovy-security InRelease Ign:2 http://archive.ubuntu.com/ubuntu groovy InRelease Err:3 http://security.ubuntu.com/ubuntu groovy-security Release 404 Not Found [IP: 91.189.91.39 80] Ign:4 http://archive.ubuntu.com/ubuntu groovy-updates InRelease Ign:5 http://archive.ubuntu.com/ubuntu groovy-backports InRelease Err:6 http://archive.ubuntu.com/ubuntu groovy Release 404 Not Found [IP: 91.189.88.142 80] Err:7 http://archive.ubuntu.com/ubuntu groovy-updates Release 404 Not Found [IP: 91.189.88.142 80] Err:8 http://archive.ubuntu.com/ubuntu groovy-backports Release 404 Not Found [IP: 91.189.88.142 80] Reading package lists... E: The repository 'http://security.ubuntu.com/ubuntu groovy-security Release' does not have a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu groovy Release' does not have a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu groovy-updates Release' does not have a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu groovy-backports Release' does not have a Release file. Using impish requires to use workaround to avoid apt asking to interactively configure tzdata. Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
138 lines
3.3 KiB
YAML
138 lines
3.3 KiB
YAML
# Copyright (c) 2021 Petr Vorel <pvorel@suse.cz>
|
|
name: "distros"
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
job:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# 32bit build
|
|
- container: "debian:stable"
|
|
env:
|
|
CC: gcc
|
|
ARCH: i386
|
|
TSS: tpm2-tss
|
|
VARIANT: i386
|
|
COMPILE_SSL: openssl-3.0.0-beta1
|
|
|
|
# cross compilation builds
|
|
- container: "debian:stable"
|
|
env:
|
|
ARCH: ppc64el
|
|
CC: powerpc64le-linux-gnu-gcc
|
|
TSS: ibmtss
|
|
VARIANT: cross-compile
|
|
|
|
- container: "debian:stable"
|
|
env:
|
|
ARCH: arm64
|
|
CC: aarch64-linux-gnu-gcc
|
|
TSS: tpm2-tss
|
|
VARIANT: cross-compile
|
|
|
|
- container: "debian:stable"
|
|
env:
|
|
ARCH: s390x
|
|
CC: s390x-linux-gnu-gcc
|
|
TSS: ibmtss
|
|
VARIANT: cross-compile
|
|
|
|
# musl (native)
|
|
- container: "alpine:latest"
|
|
env:
|
|
CC: gcc
|
|
TSS: tpm2-tss
|
|
|
|
# glibc (gcc/clang)
|
|
- container: "opensuse/tumbleweed"
|
|
env:
|
|
CC: clang
|
|
TSS: ibmtss
|
|
COMPILE_SSL: openssl-3.0.0-beta1
|
|
|
|
- container: "opensuse/leap"
|
|
env:
|
|
CC: gcc
|
|
TSS: tpm2-tss
|
|
|
|
- container: "ubuntu:impish"
|
|
env:
|
|
CC: gcc
|
|
TSS: ibmtss
|
|
COMPILE_SSL: openssl-3.0.0-beta1
|
|
|
|
- container: "ubuntu:xenial"
|
|
env:
|
|
CC: clang
|
|
TSS: tpm2-tss
|
|
|
|
- container: "fedora:latest"
|
|
env:
|
|
CC: clang
|
|
TSS: ibmtss
|
|
|
|
- container: "centos:7"
|
|
env:
|
|
CC: gcc
|
|
TSS: tpm2-tss
|
|
|
|
- container: "centos:latest"
|
|
env:
|
|
CC: gcc
|
|
TSS: tpm2-tss
|
|
|
|
- container: "debian:testing"
|
|
env:
|
|
CC: clang
|
|
TSS: tpm2-tss
|
|
|
|
- container: "debian:stable"
|
|
env:
|
|
CC: clang
|
|
TSS: ibmtss
|
|
|
|
- container: "alt:sisyphus"
|
|
env:
|
|
CC: gcc
|
|
TSS: libtpm2-tss-devel
|
|
|
|
container:
|
|
image: ${{ matrix.container }}
|
|
env: ${{ matrix.env }}
|
|
options: --security-opt seccomp=unconfined
|
|
|
|
steps:
|
|
- name: Show OS
|
|
run: cat /etc/os-release
|
|
|
|
- name: Git checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Install additional packages
|
|
run: |
|
|
INSTALL=${{ matrix.container }}
|
|
INSTALL="${INSTALL%%:*}"
|
|
INSTALL="${INSTALL%%/*}"
|
|
if [ "$VARIANT" ]; then ARCH="$ARCH" ./ci/$INSTALL.$VARIANT.sh; fi
|
|
ARCH="$ARCH" CC="$CC" TSS="$TSS" ./ci/$INSTALL.sh
|
|
if [ "$COMPILE_SSL" ]; then COMPILE_SSL="$COMPILE_SSL" ./tests/install-openssl3.sh; fi
|
|
|
|
- name: Build swtpm
|
|
run: |
|
|
if [ ! "$VARIANT" ]; then
|
|
which tpm_server || which swtpm || \
|
|
if which tssstartup; then
|
|
./tests/install-swtpm.sh;
|
|
fi
|
|
fi
|
|
|
|
- name: Compiler version
|
|
run: $CC --version
|
|
|
|
- name: Compile
|
|
run: CC="$CC" VARIANT="$VARIANT" ./build.sh
|