gitlab: use ubuntu22.04 runners and gpg2

This commit is contained in:
André Roth
2024-02-04 18:05:56 +01:00
parent aeef41bf70
commit a71186bcc3

View File

@@ -21,7 +21,7 @@ env:
jobs:
build:
name: test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
continue-on-error: false
timeout-minutes: 30
@@ -60,7 +60,7 @@ jobs:
- name: Install O/S packages
run: |
sudo apt-get update
sudo apt-get install -y graphviz gnupg1 gnupg2 gpgv1 gpgv2 git gcc make
sudo apt-get install -y graphviz gnupg2 gpgv2 git gcc make
- name: Install Python packages
run: |
@@ -76,7 +76,7 @@ jobs:
- name: Make
env:
RUN_LONG_TESTS: 'yes'
RUN_LONG_TESTS: 'yes'
AZURE_STORAGE_ENDPOINT: "127.0.0.1:10000"
AZURE_STORAGE_ACCOUNT: "devstoreaccount1"
AZURE_STORAGE_ACCESS_KEY: "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="
@@ -97,7 +97,7 @@ jobs:
release:
name: release
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3