Skip to content

Update ubuntu Docker tag to v24 (master) #3427

Update ubuntu Docker tag to v24 (master)

Update ubuntu Docker tag to v24 (master) #3427

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- master
- '[0-9]+.[0-9]+'
tags:
- '*'
pull_request:
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
build:
name: Continuous integration
runs-on: ubuntu-24.04
timeout-minutes: 30
if: "!startsWith(github.event.head_commit.message, '[skip ci] ')"
steps:
- run: docker system prune --all --force
- uses: actions/checkout@v4
- uses: camptocamp/initialise-gopass-summon-action@v2
with:
ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}}
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}}
patterns: docker
if: env.HAS_SECRETS == 'HAS_SECRETS'
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python3 -m pip install --requirement=ci/requirements.txt
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: "pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}\npre-commit-"
- run: pre-commit run --all-files
env:
SKIP: poetry-lock,isort
- run: git diff --exit-code --patch > /tmp/pre-commit.patch || true
if: failure()
- uses: actions/upload-artifact@v4
with:
name: Apply pre-commit fix.patch
path: /tmp/pre-commit.patch
retention-days: 1
if: failure()
- name: Print environment information
run: c2cciutils-env
- name: Pull
run: make pull
- name: Build
run: make build
- name: Checks
run: make checks
- name: Tests
run: make tests
env:
PRIVATE_SSH_KEY: ${{secrets.PRIVATE_SSH_KEY}}
- uses: actions/upload-artifact@v4
with:
name: results
path: results
if-no-files-found: ignore
retention-days: 5
if: failure()
- name: Acceptance
run: make acceptance
- uses: actions/upload-artifact@v4
with:
name: acceptance
path: acceptance_tests/results
if-no-files-found: ignore
retention-days: 5
if: failure()
- run: c2cciutils-docker-logs
if: failure()
- name: Publish
run: c2cciutils-publish
if: env.HAS_SECRETS == 'HAS_SECRETS'
- run: git diff --exit-code --patch > /tmp/dpkg-versions.patch || true
if: failure()
- uses: actions/upload-artifact@v4
with:
name: Update dpkg versions list.patch
path: /tmp/dpkg-versions.patch
retention-days: 1
if: failure()