~starkingdoms/starkingdoms

ref: 82ad842b7a2e162b6fd9b9869da7afaec5e2c3f6 starkingdoms/.woodpecker/.backplane.yaml -rw-r--r-- 792 bytes
82ad842b — ghostlyzsh merge and adjustment to ship editor save structure to match regular save 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
steps:
  - name: backplane_fmt
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd starkingdoms-backplane
      - rustfmt **/*.rs --check --edition 2021 --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: backplane_clippy
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd starkingdoms-backplane
      - cargo clippy --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: backplane_build
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd starkingdoms-backplane
      - cargo build --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"