We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b1e621 + 15f614c commit b83f90eCopy full SHA for b83f90e
.github/workflows/tests.yml
@@ -101,9 +101,12 @@ jobs:
101
matrix:
102
compiler:
103
- gcc
104
- - clang
105
os:
106
- ubuntu-22.04
+ branch:
107
+ - stable-5.0
108
+ - stable-6.0
109
+ - main
110
runs-on: ${{ matrix.os }}
111
steps:
112
- name: Checkout code
@@ -134,8 +137,9 @@ jobs:
134
137
- name: Build upstream head version
135
138
env:
136
139
CC: ${{ matrix.compiler }}
140
+ BASE_BRANCH: ${{ matrix.branch }}
141
run: |
- git clone https://github.com/lxc/lxcfs.git ../upstream-lxcfs
142
+ git clone -b "${BASE_BRANCH}" https://github.com/lxc/lxcfs.git ../upstream-lxcfs
143
cd ../upstream-lxcfs
144
meson setup -Ddocs=false -Dtests=true -Dinit-script=systemd -Dprefix=/usr -Db_sanitize=address,undefined build/
145
meson compile -C build
0 commit comments