Skip to content

Commit

Permalink
chore(ci): remove support for older-glibc
Browse files Browse the repository at this point in the history
BREAKING CHANGE: remove support for ubuntu 18
  • Loading branch information
jeremyVignelles committed Oct 16, 2023
1 parent b63fdd0 commit b2ff624
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b2ff624

Please sign in to comment.