mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 09:51:06 +00:00
Move ARM CI to a new CI (#3950)
* move the ARM CI out of the linux CI into a dedicated CI file * fix file name typo * rename the CI name * add this branch name temporarily to make the CI run * temporarily add pull requests to the ARM CI * revert the temporary modification to ARM CI
This commit is contained in:
committed by
GitHub
parent
c2acf30ef2
commit
849fce5855
130
.github/workflows/Linux-arm-pack.yml
vendored
Normal file
130
.github/workflows/Linux-arm-pack.yml
vendored
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
name: Packaging(Linux - ARM)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- fix*
|
||||||
|
- move-arm-ci-to-new-ci
|
||||||
|
paths-ignore:
|
||||||
|
- 'README.md'
|
||||||
|
- 'LICENSE'
|
||||||
|
- 'docs/**'
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
PRODUCT: flameshot
|
||||||
|
RELEASE: 1
|
||||||
|
# dockerfiles, see https://github.com/flameshot-org/flameshot-dockerfiles
|
||||||
|
# docker images, see https://quay.io/repository/flameshot-org/ci-building
|
||||||
|
DOCKER_REPO: quay.io/flameshot-org/ci-building
|
||||||
|
# building tool: https://github.com/flameshot-org/packpack
|
||||||
|
PACKPACK_REPO: flameshot-org/packpack
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deb-pack:
|
||||||
|
name: Build deb on ${{ matrix.dist.name }} ${{ matrix.dist.arch }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
dist:
|
||||||
|
- {
|
||||||
|
name: debian-11,
|
||||||
|
os: debian,
|
||||||
|
symbol: bullseye,
|
||||||
|
arch: armhf
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: debian-12,
|
||||||
|
os: debian,
|
||||||
|
symbol: bookworm,
|
||||||
|
arch: arm64
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: debian-12,
|
||||||
|
os: debian,
|
||||||
|
symbol: bookworm,
|
||||||
|
arch: armhf
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: ubuntu-22.04,
|
||||||
|
os: ubuntu,
|
||||||
|
symbol: jammy,
|
||||||
|
arch: amd64
|
||||||
|
}
|
||||||
|
steps:
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
- name: Checkout Source code
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: master
|
||||||
|
- name: Checkout Source code
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
- name: Set env & Print flameshot version
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
last_committed_tag=$(git tag -l --sort=-v:refname | head -1)
|
||||||
|
git_revno=$(git rev-list $(git describe --tags --abbrev=0)..HEAD --count)
|
||||||
|
git_hash=$(git rev-parse --short HEAD)
|
||||||
|
ver_info=${last_committed_tag}+git${git_revno}.${git_hash}
|
||||||
|
echo "=======FLAMESHOT VERSION========"
|
||||||
|
echo ${last_committed_tag:1}
|
||||||
|
echo "Details: ${ver_info}"
|
||||||
|
echo "================================"
|
||||||
|
echo "VERSION=${last_committed_tag:1}" >> $GITHUB_ENV
|
||||||
|
echo "VER_INFO=${ver_info}" >> $GITHUB_ENV
|
||||||
|
- name: Get packpack tool
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
repository: ${{ env.PACKPACK_REPO }}
|
||||||
|
path: tools
|
||||||
|
ref: multiarch
|
||||||
|
set-safe-directory: $GITHUB_WORKSPACE/tools
|
||||||
|
- name: Packaging on ${{ matrix.dist.name }} ${{ matrix.dist.arch }}
|
||||||
|
env:
|
||||||
|
OS: ${{ matrix.dist.os }}
|
||||||
|
DIST: ${{ matrix.dist.symbol }}
|
||||||
|
DOCKER_ARCH: ${{ matrix.dist.arch }}
|
||||||
|
run: |
|
||||||
|
case ${DOCKER_ARCH} in
|
||||||
|
arm32v7)
|
||||||
|
export ARCH=arm/v7
|
||||||
|
;;
|
||||||
|
armhf)
|
||||||
|
export ARCH=arm/v7
|
||||||
|
;;
|
||||||
|
arm64*)
|
||||||
|
export ARCH=arm64
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
export ARCH=${DOCKER_ARCH}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
cp -r $GITHUB_WORKSPACE/packaging/debian $GITHUB_WORKSPACE
|
||||||
|
bash $GITHUB_WORKSPACE/tools/packpack
|
||||||
|
mv $GITHUB_WORKSPACE/build/${PRODUCT}_${VERSION}-${RELEASE}_${{ matrix.dist.arch }}.deb $GITHUB_WORKSPACE/build/${PRODUCT}-${VERSION}-${RELEASE}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb
|
||||||
|
- name: SHA256Sum of ${{ matrix.dist.name }} ${{ matrix.dist.arch }} package
|
||||||
|
run: |
|
||||||
|
cd "$GITHUB_WORKSPACE/build/" || { >&2 echo "Cannot cd to '$GITHUB_WORKSPACE/build/'!"; exit 11 ; }
|
||||||
|
sha256sum ${PRODUCT}-${VERSION}-${RELEASE}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb | tee ${PRODUCT}-${VERSION}-${RELEASE}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb.sha256sum
|
||||||
|
- name: Artifact Upload
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ${{ env.PRODUCT }}-${{ env.VER_INFO }}-artifact-${{ matrix.dist.name }}-${{ matrix.dist.arch }}
|
||||||
|
path: |
|
||||||
|
${{ github.workspace }}/build/${{ env.PRODUCT }}-*-${{ env.RELEASE }}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb
|
||||||
|
${{ github.workspace }}/build/${{ env.PRODUCT }}-*-${{ env.RELEASE }}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb.sha256sum
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
|
||||||
42
.github/workflows/Linux-pack.yml
vendored
42
.github/workflows/Linux-pack.yml
vendored
@@ -41,36 +41,12 @@ jobs:
|
|||||||
symbol: bullseye,
|
symbol: bullseye,
|
||||||
arch: amd64
|
arch: amd64
|
||||||
}
|
}
|
||||||
- {
|
|
||||||
name: debian-11,
|
|
||||||
os: debian,
|
|
||||||
symbol: bullseye,
|
|
||||||
arch: arm64
|
|
||||||
}
|
|
||||||
- {
|
|
||||||
name: debian-11,
|
|
||||||
os: debian,
|
|
||||||
symbol: bullseye,
|
|
||||||
arch: armhf
|
|
||||||
}
|
|
||||||
- {
|
- {
|
||||||
name: debian-12,
|
name: debian-12,
|
||||||
os: debian,
|
os: debian,
|
||||||
symbol: bookworm,
|
symbol: bookworm,
|
||||||
arch: amd64
|
arch: amd64
|
||||||
}
|
}
|
||||||
- {
|
|
||||||
name: debian-12,
|
|
||||||
os: debian,
|
|
||||||
symbol: bookworm,
|
|
||||||
arch: arm64
|
|
||||||
}
|
|
||||||
- {
|
|
||||||
name: debian-12,
|
|
||||||
os: debian,
|
|
||||||
symbol: bookworm,
|
|
||||||
arch: armhf
|
|
||||||
}
|
|
||||||
- {
|
- {
|
||||||
name: ubuntu-22.04,
|
name: ubuntu-22.04,
|
||||||
os: ubuntu,
|
os: ubuntu,
|
||||||
@@ -125,22 +101,10 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
OS: ${{ matrix.dist.os }}
|
OS: ${{ matrix.dist.os }}
|
||||||
DIST: ${{ matrix.dist.symbol }}
|
DIST: ${{ matrix.dist.symbol }}
|
||||||
DOCKER_ARCH: ${{ matrix.dist.arch }}
|
#DOCKER_ARCH: ${{ matrix.dist.arch }}
|
||||||
|
## I cannot see if ARCH is used anywhere. Should we remove it?
|
||||||
|
#ARCH: ${{ matrix.dist.arch }}
|
||||||
run: |
|
run: |
|
||||||
case ${DOCKER_ARCH} in
|
|
||||||
arm32v7)
|
|
||||||
export ARCH=arm/v7
|
|
||||||
;;
|
|
||||||
armhf)
|
|
||||||
export ARCH=arm/v7
|
|
||||||
;;
|
|
||||||
arm64*)
|
|
||||||
export ARCH=arm64
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
export ARCH=${DOCKER_ARCH}
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
cp -r $GITHUB_WORKSPACE/packaging/debian $GITHUB_WORKSPACE
|
cp -r $GITHUB_WORKSPACE/packaging/debian $GITHUB_WORKSPACE
|
||||||
bash $GITHUB_WORKSPACE/tools/packpack
|
bash $GITHUB_WORKSPACE/tools/packpack
|
||||||
mv $GITHUB_WORKSPACE/build/${PRODUCT}_${VERSION}-${RELEASE}_${{ matrix.dist.arch }}.deb $GITHUB_WORKSPACE/build/${PRODUCT}-${VERSION}-${RELEASE}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb
|
mv $GITHUB_WORKSPACE/build/${PRODUCT}_${VERSION}-${RELEASE}_${{ matrix.dist.arch }}.deb $GITHUB_WORKSPACE/build/${PRODUCT}-${VERSION}-${RELEASE}.${{ matrix.dist.name }}.${{ matrix.dist.arch }}.deb
|
||||||
|
|||||||
Reference in New Issue
Block a user