mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
outputs:
|
|
dirs: ${{ steps.filter.outputs.changes }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: dorny/paths-filter@v2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
./integration_test: ./integration_tests/rust-integration-tests/**
|
|
validate:
|
|
needs: [changes]
|
|
if: ${{ !contains(needs.changes.outputs.dirs, '[]') }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
matrix:
|
|
rust: [1.58.1, 1.59.0]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
override: true
|
|
- name: Cache youki
|
|
uses: Swatinem/rust-cache@v1
|
|
- run: sudo apt-get -y update
|
|
- run: sudo apt-get install -y pkg-config libsystemd-dev libdbus-glib-1-dev libelf-dev libseccomp-dev
|
|
- name: Install runc 1.1.0
|
|
run: |
|
|
wget -q https://github.com/opencontainers/runc/releases/download/v1.1.0/runc.amd64
|
|
sudo mv runc.amd64 /usr/bin/runc
|
|
sudo chmod 755 /usr/bin/runc
|
|
- name: Validate tests on runc
|
|
run: cd scripts && ./rust_integration_tests.sh runc
|
|
- name: Validate tests on youki
|
|
run: cd scripts && ./rust_integration_tests.sh youki
|