Add support for Debian 11 (#212)

This commit is contained in:
Marko Budiselić
2021-10-06 16:17:41 +02:00
committed by GitHub
parent bd1e848363
commit 42facfacbc
5 changed files with 134 additions and 1 deletions

View File

@@ -73,6 +73,23 @@ jobs:
name: debian-10
path: build/output/debian-10/memgraph*.deb
debian-11:
runs-on: [self-hosted, DockerMgBuild]
timeout-minutes: 60
steps:
- name: "Set up repository"
uses: actions/checkout@v2
with:
fetch-depth: 0 # Required because of release/get_version.py
- name: "Build package"
run: |
./release/package/run.sh package debian-11
- name: "Upload package"
uses: actions/upload-artifact@v2
with:
name: debian-11
path: build/output/debian-11/memgraph*.deb
docker:
runs-on: [self-hosted, DockerMgBuild]
timeout-minutes: 60