mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-27 14:22:31 +02:00

This is a preparation for adding GitHub Actions support. Also run from root directory. It's a bit confusing to run from travis directory. Signed-off-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
12 lines
206 B
Bash
Executable File
12 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2020 Petr Vorel <pvorel@suse.cz>
|
|
set -ex
|
|
|
|
dpkg --add-architecture i386
|
|
apt update
|
|
|
|
apt install -y --no-install-recommends \
|
|
linux-libc-dev:i386 \
|
|
gcc-multilib \
|
|
pkg-config:i386
|