Skip to content

Commit 803d470

Browse files
committed
ubuntu 20.04 is discontinued on github
1 parent eed7738 commit 803d470

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
VARNISH_VERSION: ${{ matrix.varnish-version }}
1717
VARNISH_MODULES_VERSION: ${{ matrix.varnish-modules-version }}
1818
name: PHP ${{ matrix.php }} Varnish ${{ matrix.varnish-version }} SF ${{ matrix.symfony-version }}
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-latest
2020
strategy:
2121
fail-fast: false
2222
matrix:
@@ -81,7 +81,7 @@ jobs:
8181

8282
varnish5:
8383
name: PHP ${{ matrix.php }} Legacy Varnish 5
84-
runs-on: ubuntu-20.04
84+
runs-on: ubuntu-22.04
8585
env:
8686
VARNISH_VERSION: '5.1'
8787
VARNISH_MODULES_VERSION: '0.14.0'
@@ -132,7 +132,7 @@ jobs:
132132

133133
varnish4:
134134
name: PHP ${{ matrix.php }} Legacy Varnish 4
135-
runs-on: ubuntu-20.04
135+
runs-on: ubuntu-22.04
136136
env:
137137
VARNISH_VERSION: '4.1'
138138
VARNISH_MODULES_VERSION: '' # varnish modules compilation fails, not sure why
@@ -176,7 +176,7 @@ jobs:
176176

177177
lowest:
178178
name: PHP ${{ matrix.php }} Lowest, Varnish 3
179-
runs-on: ubuntu-20.04
179+
runs-on: ubuntu-22.04
180180
env:
181181
VARNISH_VERSION: '3.0'
182182
VARNISH_MODULES_VERSION: ''
@@ -220,7 +220,7 @@ jobs:
220220

221221
coverage:
222222
name: Code Coverage
223-
runs-on: ubuntu-20.04
223+
runs-on: ubuntu-latest
224224
env:
225225
VARNISH_VERSION: '6.6'
226226
VARNISH_MODULES_VERSION: '0.18.0'

tests/install-varnish-modules.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
echo "### Installing Varnish Modules ${VARNISH_MODULES_VERSION} ###"
6-
sudo apt-get install build-essential automake varnish-dev python3-sphinx
6+
sudo apt-get install build-essential automake libvarnishapi-dev python3-sphinx
77

88
curl -A "FOS Github" -o /tmp/varnish-modules.tar.gz -D - -L -s https://github.com/varnish/varnish-modules/archive/refs/tags/${VARNISH_MODULES_VERSION}.tar.gz
99
tar zxpf /tmp/varnish-modules.tar.gz -C /tmp/

0 commit comments

Comments
 (0)