~starkingdoms/starkingdoms

ref: 46d51b882ac9045acf251408d1435354e78eec87 starkingdoms/.woodpecker/NORUN.backplane.yal -rw-r--r-- 642 bytes
46d51b88 — core idk wtf is going on ?? 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: coresdev/stk_build_env
    commands:
      - cd starkingdoms-backplane
      - rustfmt **/*.rs --check --edition 2021 --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: backplane_clippy
    image: coresdev/stk_build_env
    commands:
      - cd starkingdoms-backplane
      - cargo clippy --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"
  - name: backplane_build
    image: coresdev/stk_build_env
    commands:
      - cd starkingdoms-backplane
      - cargo build --profile release-ci --color always
    environment:
      CARGO_INCREMENTAL: "0"