mirror of https://github.com/wolfSSL/wolfTPM.git
103 lines
4.4 KiB
YAML
103 lines
4.4 KiB
YAML
name: Zephyr wolfTPM Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ '*' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
jobs:
|
|
run_test:
|
|
name: Build
|
|
strategy:
|
|
matrix:
|
|
config:
|
|
- zephyr-ref: v3.4.0
|
|
zephyr-sdk: 0.16.1
|
|
runs-on: ubuntu-22.04
|
|
# This should be a safe limit for the tests to run.
|
|
timeout-minutes: 25
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
# Don't prompt for anything
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
sudo apt-get update
|
|
# most of the ci-base zephyr docker image packages
|
|
sudo apt-get install -y zip bridge-utils uml-utilities \
|
|
git cmake ninja-build gperf ccache dfu-util device-tree-compiler wget \
|
|
python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
|
|
make gcc gcc-multilib g++-multilib libsdl2-dev libmagic1 \
|
|
autoconf automake bison build-essential ca-certificates cargo ccache chrpath cmake \
|
|
cpio device-tree-compiler dfu-util diffstat dos2unix doxygen file flex g++ gawk gcc \
|
|
gcovr git git-core gnupg gperf gtk-sharp2 help2man iproute2 lcov libcairo2-dev \
|
|
libglib2.0-dev libgtk2.0-0 liblocale-gettext-perl libncurses5-dev libpcap-dev \
|
|
libpopt0 libsdl1.2-dev libsdl2-dev libssl-dev libtool libtool-bin locales make \
|
|
net-tools openssh-client parallel pkg-config python3-dev python3-pip \
|
|
python3-ply python3-setuptools python-is-python3 qemu-kvm rsync socat srecord sudo \
|
|
texinfo unzip wget ovmf xz-utils
|
|
|
|
- name: Install west
|
|
run: sudo pip install west
|
|
|
|
- name: Init west workspace
|
|
run: west init --mr ${{ matrix.config.zephyr-ref }} zephyr
|
|
|
|
- name: Update west.yml
|
|
working-directory: zephyr/zephyr
|
|
run: |
|
|
REF=$(echo '${{ github.ref }}' | sed -e 's/\//\\\//g')
|
|
sed -e 's/remotes:/remotes:\n \- name: wolfssl\n url\-base: https:\/\/github.com\/wolfssl/' -i west.yml
|
|
sed -e "s/remotes:/remotes:\n \- name: wolftpm\n url\-base: https:\/\/github.com\/${{ github.repository_owner }}/" -i west.yml
|
|
sed -e "s/projects:/projects:\n \- name: wolftpm\n path: modules\/lib\/wolftpm\n remote: wolftpm\n revision: $REF/" -i west.yml
|
|
sed -e 's/projects:/projects:\n \- name: wolfssl\n path: modules\/crypto\/wolfssl\n remote: wolfssl\n revision: master/' -i west.yml
|
|
|
|
- name: Update west workspace
|
|
working-directory: zephyr
|
|
run: west update -n -o=--depth=1
|
|
|
|
- name: Export zephyr
|
|
working-directory: zephyr
|
|
run: west zephyr-export
|
|
|
|
- name: Install pip dependencies
|
|
working-directory: zephyr
|
|
run: sudo pip install -r zephyr/scripts/requirements.txt
|
|
|
|
- name: Install zephyr SDK
|
|
run: |
|
|
wget -q https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${{ matrix.config.zephyr-sdk }}/zephyr-sdk-${{ matrix.config.zephyr-sdk }}_linux-x86_64_minimal.tar.xz
|
|
tar xf zephyr-sdk-${{ matrix.config.zephyr-sdk }}_linux-x86_64_minimal.tar.xz
|
|
cd zephyr-sdk-${{ matrix.config.zephyr-sdk }}
|
|
./setup.sh -h -c -t x86_64-zephyr-elf
|
|
|
|
- name: Build wolftpm tests
|
|
id: wolftpm_build
|
|
working-directory: zephyr
|
|
run : |
|
|
west build -p auto -b qemu_x86 modules/lib/wolftpm/zephyr/samples/wolftpm_wrap_test
|
|
west build -p auto -b qemu_x86 modules/lib/wolftpm/zephyr/samples/wolftpm_wrap_caps
|
|
|
|
# skipping tests, because no simulator TPM to run
|
|
#- name: Run wolftpm tests
|
|
# id: wolftpm_tests
|
|
# working-directory: zephyr
|
|
# run: |
|
|
# ./zephyr/scripts/twister --testsuite-root modules/lib/wolftpm --test zephyr/samples/wolftpm_wrap_caps/sample.lib.wolftpm_wrap_caps -vvv
|
|
# rm -rf zephyr/twister-out
|
|
# ./zephyr/scripts/twister --testsuite-root modules/lib/wolftpm --test zephyr/samples/wolftpm_wrap_test/sample.lib.wolftpm_wrap_test -vvv
|
|
# rm -rf zephyr/twister-out
|
|
|
|
- name: Zip failure logs
|
|
if: ${{ failure() && steps.wolftpm_build.outcome == 'failure' }}
|
|
run: |
|
|
zip -9 -r logs.zip zephyr/twister-out
|
|
|
|
- name: Upload failure logs
|
|
if: ${{ failure() && steps.wolftpm_build.outcome == 'failure' }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: zephyr-client-test-logs
|
|
path: logs.zip
|
|
retention-days: 5
|