2024-03-07 11:36:40 -05:00
|
|
|
stages:
|
2024-03-08 14:19:32 -05:00
|
|
|
- format
|
2024-03-08 14:26:40 -05:00
|
|
|
- build
|
|
|
|
|
|
|
|
clang-format:
|
|
|
|
stage: format
|
2024-03-10 17:20:42 -04:00
|
|
|
image: suyuemu/cibuild:linux-x64
|
2024-03-12 00:30:44 -04:00
|
|
|
allow_failure: true
|
2024-03-08 14:26:40 -05:00
|
|
|
variables:
|
|
|
|
RELEASE_NAME: mainline
|
|
|
|
script:
|
2024-03-08 17:44:03 -05:00
|
|
|
- git submodule update --init --depth 1 --recursive
|
2024-03-08 14:26:40 -05:00
|
|
|
- bash .ci/scripts/format/script.sh
|
2024-03-06 19:05:52 -05:00
|
|
|
|
2024-03-07 11:36:40 -05:00
|
|
|
build-linux:
|
2024-03-06 19:05:52 -05:00
|
|
|
stage: build
|
2024-03-10 17:20:42 -04:00
|
|
|
image: suyuemu/cibuild:linux-x64
|
2024-03-07 11:36:40 -05:00
|
|
|
resource_group: linux-ci
|
|
|
|
variables:
|
|
|
|
RELEASE_NAME: mainline
|
2024-03-06 19:05:52 -05:00
|
|
|
script:
|
2024-03-07 11:36:40 -05:00
|
|
|
- git submodule update --init --depth 1 --recursive
|
|
|
|
- bash .ci/scripts/linux/docker.sh
|
|
|
|
- bash .ci/scripts/linux/upload.sh
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- artifacts/*
|