You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
794 B
30 lines
794 B
![]()
5 years ago
|
## The test container is created with https://github.com/dracutdevs/fedora-container
|
||
|
|
||
|
name: Fedora-30
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'master'
|
||
|
tags:
|
||
|
- '*'
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
#container: quay.io/haraldh/dracut-fedora:30
|
||
|
timeout-minutes: 30
|
||
|
strategy:
|
||
|
matrix:
|
||
|
test: [ "01", "02", "03", "04", "10", "11", "12", "13", "14", "15", "17", "20", "30", "31", "40", "50", "60" ]
|
||
|
fail-fast: false
|
||
|
steps:
|
||
|
- name: "Checkout Repository"
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
|
||
|
- name: "TEST-${{ matrix.test }}"
|
||
|
run: docker run --privileged -v $(pwd)/:/dracut quay.io/haraldh/dracut-fedora:30 /dracut/fedora-test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
|