Skip to content

Commit ae9a149

Browse files
committed
github actions: apt hacks for older Debian
1 parent 7e01467 commit ae9a149

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ jobs:
5454
distver: 14.04 # It seems that 14.04 is the oldest Ubuntu possible to run in a github actions container
5555
steps:
5656
- uses: actions/checkout@v3
57+
- name: apt hacks for older Debian
58+
if: matrix.distver == 'jessie'
59+
run: |
60+
echo "APT::Get::AllowUnauthenticated 1;" > /etc/apt/apt.conf.d/02allow-unsigned
5761
- name: Install deps on Debian and Ubuntu
5862
run: |
5963
set -e

0 commit comments

Comments
 (0)