suyu/.gitlab-ci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
582 B
YAML
Raw Normal View History

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