ci: Remove docker bazel jobs, remove python != 3.12 bazel jobs

note: docker bazel: no space left on device -> need to split them anyway
This commit is contained in:
Corentin Le Molgat
2024-11-20 17:27:51 +01:00
parent 5a20b0296e
commit 6298232887
5 changed files with 12 additions and 49 deletions

View File

@@ -1,37 +0,0 @@
# ref: https://github.com/docker-library/official-images
name: amd64 Docker Bazel
on: [push, pull_request, workflow_dispatch]
jobs:
bazel:
strategy:
matrix:
platform: [amd64] # arm64 riscv64
distro: [
almalinux,
# alpine,
archlinux,
debian,
fedora,
opensuse,
rockylinux,
ubuntu
]
fail-fast: false
name: ${{ matrix.platform }} • ${{ matrix.distro }} • Bazel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check docker
run: |
docker info
docker buildx ls
- name: Build env image
run: make --directory=bazel ${{ matrix.platform }}_${{ matrix.distro }}_env
- name: Build devel image
run: make --directory=bazel ${{ matrix.platform }}_${{ matrix.distro }}_devel
- name: Build project
run: make --directory=bazel ${{ matrix.platform }}_${{ matrix.distro }}_build
- name: Test project
run: make --directory=bazel ${{ matrix.platform }}_${{ matrix.distro }}_test

View File

@@ -9,10 +9,10 @@ jobs:
strategy:
matrix:
python: [
{version: '3.10'},
{version: '3.11'},
# {version: '3.10'},
# {version: '3.11'},
{version: '3.12'},
{version: '3.13'},
# {version: '3.13'},
]
fail-fast: false
name: Linux • Bazel • Python-${{ matrix.python.version }}

View File

@@ -9,10 +9,10 @@ jobs:
strategy:
matrix:
python: [
{version: '3.10'},
{version: '3.11'},
# {version: '3.10'},
# {version: '3.11'},
{version: '3.12'},
{version: '3.13'},
# {version: '3.13'},
]
fail-fast: false
name: MacOS • Bazel • Python-${{ matrix.python.version }}

View File

@@ -10,10 +10,10 @@ jobs:
matrix:
runner: [windows-2022]
python: [
# {version: '3.10'},
# {version: '3.11'},
# {version: '3.10'},
# {version: '3.11'},
{version: '3.12'},
# {version: '3.13'},
# {version: '3.13'},
]
fail-fast: false # Don't cancel all jobs if one fails.
name: ${{ matrix.runner }} • Bazel • Python-${{ matrix.python.version }}

View File

@@ -9,10 +9,10 @@ jobs:
strategy:
matrix:
python: [
{version: '3.10'},
{version: '3.11'},
# {version: '3.10'},
# {version: '3.11'},
{version: '3.12'},
{version: '3.13'},
# {version: '3.13'},
]
fail-fast: false
name: MacOS • Bazel • Python-${{ matrix.python.version }}