mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
CI: Add Linux arm64 runner
This commit is contained in:
parent
ddbb64463a
commit
82157e231b
@ -155,7 +155,7 @@ pages:
|
||||
only:
|
||||
- main
|
||||
|
||||
build_linux:
|
||||
build_linux_x86:
|
||||
stage: coverage
|
||||
before_script:
|
||||
[
|
||||
@ -167,6 +167,16 @@ build_linux:
|
||||
paths:
|
||||
- build/linux/release/bundle/
|
||||
|
||||
build_linux_arm64:
|
||||
stage: coverage
|
||||
script: [./scripts/build-linux.sh]
|
||||
tags: [docker_arm64]
|
||||
only: [main]
|
||||
artifacts:
|
||||
when: on_success
|
||||
paths:
|
||||
- build/linux/arm64/release/bundle/
|
||||
|
||||
snap:edge:
|
||||
stage: release
|
||||
image: "snapcore/snapcraft"
|
||||
@ -175,8 +185,8 @@ snap:edge:
|
||||
only: [main]
|
||||
before_script: [sudo apt install git -y]
|
||||
script: [./scripts/publish-snap-edge.sh]
|
||||
needs: ["build_linux"]
|
||||
dependencies: ["build_linux"]
|
||||
needs: ["build_linux_x86"]
|
||||
dependencies: ["build_linux_x86"]
|
||||
artifacts:
|
||||
paths:
|
||||
- "./*.snap"
|
||||
@ -190,7 +200,7 @@ snap:publish:
|
||||
only: [tags]
|
||||
before_script: [sudo apt install git -y]
|
||||
script: [./scripts/publish-snap-stable.sh]
|
||||
needs: ["build_linux"]
|
||||
needs: ["build_linux_x86"]
|
||||
artifacts:
|
||||
paths:
|
||||
- "./*.snap"
|
||||
@ -244,13 +254,20 @@ upload-web:
|
||||
- |
|
||||
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-web.tar.gz
|
||||
|
||||
upload-linux:
|
||||
upload-linux-x86:
|
||||
extends: .release
|
||||
script:
|
||||
- tar czf package.tar.gz -C build/linux/release/bundle/ .
|
||||
- |
|
||||
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux.tar.gz
|
||||
|
||||
upload-linux-arm64:
|
||||
extends: .release
|
||||
script:
|
||||
- tar czf package.tar.gz -C build/linux/arm64/release/bundle/ .
|
||||
- |
|
||||
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file package.tar.gz ${PACKAGE_REGISTRY_URL}/fluffychat-linux.tar.gz
|
||||
|
||||
upload-windows:
|
||||
extends: .release
|
||||
script:
|
||||
|
Loading…
Reference in New Issue
Block a user