mirror of https://git.suyu.dev/suyu/suyu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
582 B
YAML
28 lines
582 B
YAML
stages:
|
|
- format
|
|
- build
|
|
|
|
clang-format:
|
|
stage: format
|
|
image: suyuemu/cibuild:linux-x64
|
|
allow_failure: true
|
|
variables:
|
|
RELEASE_NAME: mainline
|
|
script:
|
|
- git submodule update --init --depth 1 --recursive
|
|
- bash .ci/scripts/format/script.sh
|
|
|
|
build-linux:
|
|
stage: build
|
|
image: suyuemu/cibuild:linux-x64
|
|
resource_group: linux-ci
|
|
variables:
|
|
RELEASE_NAME: mainline
|
|
script:
|
|
- git submodule update --init --depth 1 --recursive
|
|
- bash .ci/scripts/linux/docker.sh
|
|
- bash .ci/scripts/linux/upload.sh
|
|
artifacts:
|
|
paths:
|
|
- artifacts/*
|