Skip to content

(RHEL-32494) ci: update actions/upload-artifact to v4 #474

(RHEL-32494) ci: update actions/upload-artifact to v4

(RHEL-32494) ci: update actions/upload-artifact to v4 #474

Workflow file for this run

---
# vi: ts=2 sw=2 et:
#
name: Unit tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
image: [stream8]
phase: [GCC, GCC_ASAN]
env:
CONT_NAME: "systemd-centos8-ci"
CENTOS_RELEASE: ${{ matrix.image }}
steps:
- name: Repository checkout
uses: actions/checkout@v1
- name: Install build dependencies
run: sudo -E .github/workflows/unit_tests.sh SETUP
- name: Build & test (${{ env.CENTOS_RELEASE }} / ${{ matrix.phase }})
run: sudo -E .github/workflows/unit_tests.sh RUN_${{ matrix.phase }}
- name: Cleanup
run: sudo -E .github/workflows/unit_tests.sh CLEANUP