Skip to main content

max / goingson

Remove sourcehut CI config Sourcehut is used as a backup mirror, not for CI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-05-02 23:15 UTC
Commit: 2a899e2d11620372b331c579397f54cef47e16a5
Parent: 8e4136e
1 file changed, +0 insertions, -37 deletions
D .build.yml -37
@@ -1,37 +0,0 @@
1 - image: archlinux
2 - packages:
3 - - rust
4 - - cmake
5 - - clang
6 - - git
7 - - pkg-config
8 - - perl
9 - - webkit2gtk-4.1
10 - - gtk3
11 - - openssl
12 - - libayatana-appindicator
13 - sources:
14 - - https://git.sr.ht/~maxmj/goingson
15 - - https://git.sr.ht/~maxmj/synckit-client
16 - environment:
17 - CARGO_INCREMENTAL: "0"
18 - RUST_BACKTRACE: "1"
19 - tasks:
20 - - setup: |
21 - # Arrange directory structure for path dependencies
22 - mkdir -p project/active
23 - mv goingson project/active/
24 - mv synckit-client project/
25 - - check: |
26 - cd project/active/goingson
27 - cargo check --workspace 2>&1
28 - - test: |
29 - cd project/active/goingson
30 - cargo test --workspace 2>&1
31 - - clippy: |
32 - cd project/active/goingson
33 - cargo clippy --workspace --all-targets -- -D warnings 2>&1
34 - - audit: |
35 - cargo install --locked cargo-audit
36 - cd project/active/goingson
37 - cargo audit 2>&1