From b2ff6248389e966e4a608f55e5b710deb0a2c60c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20VIGNELLES?= Date: Wed, 16 Aug 2023 13:06:06 +0200 Subject: [PATCH] chore(ci): remove support for older-glibc BREAKING CHANGE: remove support for ubuntu 18 --- .github/workflows/ci.yml | 43 +--------------------------------------- 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab64fa28..9315cbff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -246,46 +246,6 @@ jobs: name: ddb-bin-linux path: ./dist - build-bin-linux-older-glibc: - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository - needs: [ ci-linux ] - - runs-on: ubuntu-18.04 - - name: Build (Linux Binary - Older glibc) - - steps: - - name: Setup python 3.8 - uses: actions/setup-python@v4 - with: - python-version: '3.8' - - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Git User config - run: | - git config --global user.email "action@github.com" - git config --global user.name "github-actions" - - - name: Install Dependencies - run: | - pip install -e .[dev] - - - name: Bump version - run: semantic-release -v DEBUG version - - - name: Binary - run: pyinstaller --dist ./dist ddb.spec - - - uses: actions/upload-artifact@v3 - if: matrix.regex == '0' - with: - name: ddb-bin-linux-older-glibc - path: ./dist - build-bin-alpine: if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository needs: [ ci-linux ] @@ -418,7 +378,7 @@ jobs: release: if: github.ref == 'refs/heads/master' && github.event_name == 'push' - needs: [ commitlint, build-setuptools-linux, build-bin-linux, build-bin-linux-older-glibc, build-bin-windows, build-bin-macos, build-bin-alpine ] + needs: [ commitlint, build-setuptools-linux, build-bin-linux, build-bin-windows, build-bin-macos, build-bin-alpine ] runs-on: ubuntu-latest @@ -448,7 +408,6 @@ jobs: run: | mkdir -p ./dist mv artifacts/ddb-bin-linux/ddb ./dist/ddb-linux - mv artifacts/ddb-bin-linux-older-glibc/ddb ./dist/ddb-linux-older-glibc mv artifacts/ddb-bin-alpine/ddb ./dist/ddb-alpine mv artifacts/ddb-bin-macos/ddb ./dist/ddb-macos mv artifacts/ddb-bin-windows/ddb.exe ./dist/ddb-windows.exe