~starkingdoms/starkingdoms

ref: 8b153d11c164790bcc1ed061ab5d0e6316bbc261 starkingdoms/.woodpecker/.server.yaml -rw-r--r-- 736 bytes
8b153d11 — core h2 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: server_fmt
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd server
      - rustfmt **/*.rs --check --edition 2021 --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: server_clippy
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd server
      - cargo clippy --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: server_build
    image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603
    commands:
      - cd server
      - cargo build --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"