1
mirror of https://github.com/ThePhaseless/Byparr.git synced 2025-03-15 17:50:21 +08:00

run test on x64 and build with buildx

This commit is contained in:
Thephaseless 2024-11-24 22:50:04 +00:00
parent 758496a4ae
commit c8f02c1102

@ -23,12 +23,6 @@ env:
jobs: jobs:
test: test:
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -64,11 +58,6 @@ jobs:
run: poetry run pytest run: poetry run pytest
build: build:
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
needs: test needs: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
@ -131,7 +120,7 @@ jobs:
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
build-args: GITHUB_BUILD=true build-args: GITHUB_BUILD=true