-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (52 loc) · 1.49 KB
/
test-install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Test install
on:
pull_request:
branches: [ "main" ]
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:37', 'fedora:39', 'ubuntu:22', 'centos:9']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run
run: bash tests/test.sh ${{ matrix.images }}
install_master:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:39', 'ubuntu:22', 'centos:9']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set QEMU_REF to master
run: |
echo 'QEMU_PACKAGE=' > bootstrap
echo 'QEMU_REF=master' >> dependencies.sh
- name: Run
run: bash tests/test.sh ${{ matrix.images }}
install_repo:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:39', 'ubuntu:22']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Disable QEMU_PACKAGE
run: |
echo 'QEMU_PACKAGE=' > bootstrap
echo 'QEMU_GIT=https://github.com/qemu/qemu.git' >> bootstrap
echo 'QEMU_REF=v9.0.0' >> bootstrap
- name: Disable VIRTIOFSD_PACKAGE
run: |
echo 'VIRTIOFSD_PACKAGE=' >> bootstrap
echo 'VIRTIOFSD_GIT=https://gitlab.com/virtio-fs/virtiofsd.git' >> bootstrap
echo 'VIRTIOFSD_REF=v1.11.0' >> bootstrap
- name: Run
run: bash tests/test.sh ${{ matrix.images }}