Manifest
Lint Cargo Lint Metadata Fetch Metadata Test Cargo Test Compile Binaries Man Pages Cargo Build ayllu-build Cargo Build ayllu-dispatch Cargo Build ayllu-keys Cargo Build ayllu-migrate Cargo Build ayllu-shell Cargo Build ayllu-web Cargo Build quipu Arch Distribution Man Pages Shell Completion Makepkg Debian Distribution Fetch Cargo Test Man Pages Shell Completion Cargo Build ayllu-build Cargo Build ayllu-dispatch Cargo Build ayllu-keys Cargo Build ayllu-migrate Cargo Build ayllu-shell Cargo Build ayllu-web Cargo Build quipu Dpkg

id

collection

name

git_hash

state

started_at

finished_at

1

ayllu

ayllu

b72b56f8dc9658ec36bb236802faa980e1f6bbf6

Passed

2026-07-21T10:27:14Z

2026-07-21T10:37:52Z

Workflow

id

name

image

state

duration

1

ayllu-arch

Passed

2s

2

ayllu-arch

Passed

3s

3

ayllu-arch

Passed

91s

4

ayllu-arch

Passed

184s

5

ayllu-arch

Passed

23s

6

ayllu-debian

Passed

325s

Cache

id

name

path

read_only

transient

7

cargo-cache

/home/ayllu/.cargo/registry

0

0

8

build-cache-1.transient

/home/ayllu/cargo-target

0

1

Steps

id

name

state

duration

exit_code

5

Passed

4s

0

6

Passed

76s

0

7

Passed

9s

0

8

Passed

5s

0

9

Passed

4s

0

10

Passed

10s

0

11

Passed

58s

0

12

Passed

13s

0

Step
Cargo Build ayllu-web

key

value

shell

/bin/sh

input

cargo build --frozen --release --bin=ayllu-web

Variables

id

step_id

name

value

21

11

AYLLU_VERSION

0.5.1

22

11

CARGO_TARGET_DIR

/home/ayllu/cargo-target

Logs
View Raw
1 Compiling ayllu-web v0.5.0 (/src/ayllu-web)
2 warning: unused imports: `Associations`, `BelongingToDsl`, `FromSqlRow`, `FromSql`, `Output`, `SelectableHelper`, `ToSql`, `backend::Backend`, `expression::AsExpression`, `self`, `self`, and `sql_types::Integer`
3 --> crates/database/src/repositories.rs:2:5
4 |
5 2 | Associations, BelongingToDsl, ExpressionMethods, Identifiable, Insertable, QueryDsl, Queryable,
6 | ^^^^^^^^^^^^ ^^^^^^^^^^^^^^
7 3 | RunQueryDsl, Selectable, SelectableHelper,
8 | ^^^^^^^^^^^^^^^^
9 4 | backend::Backend,
10 | ^^^^^^^^^^^^^^^^
11 5 | deserialize::{self, FromSql, FromSqlRow},
12 | ^^^^ ^^^^^^^ ^^^^^^^^^^
13 6 | expression::AsExpression,
14 | ^^^^^^^^^^^^^^^^^^^^^^^^
15 7 | serialize::{self, Output, ToSql},
16 | ^^^^ ^^^^^^ ^^^^^
17 8 | sql_types::Integer,
18 | ^^^^^^^^^^^^^^^^^^
19 |
20 = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
21
22 warning: unused import: `tabled_util`
23 --> crates/database/src/repositories.rs:15:25
24 |
25 15 | use crate::{Error, Ptr, tabled_util};
26 | ^^^^^^^^^^^
27
28 warning: unused import: `Insertable`
29 --> crates/database/src/repositories.rs:2:68
30 |
31 2 | Associations, BelongingToDsl, ExpressionMethods, Identifiable, Insertable, QueryDsl, Queryable,
32 | ^^^^^^^^^^
33
34 warning: `ayllu_database` (lib) generated 3 warnings (run `cargo fix --lib -p ayllu_database` to apply 2 suggestions)
35 warning: unused import: `std::fs::metadata`
36 --> ayllu-web/src/config.rs:2:5
37 |
38 2 | use std::fs::metadata;
39 | ^^^^^^^^^^^^^^^^^
40 |
41 = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
42
43 warning: unused import: `crate::extractors::config::ConfigReader`
44 --> ayllu-web/src/middleware/error.rs:11:5
45 |
46 11 | use crate::extractors::config::ConfigReader;
47 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
48
49 warning: unused import: `config::Config`
50 --> ayllu-web/src/routes/assets.rs:4:13
51 |
52 4 | use crate::{config::Config, template::DEFAULT_THEME_CSS};
53 | ^^^^^^^^^^^^^^
54
55 warning: unused import: `crate::navigation`
56 --> ayllu-web/src/routes/blob.rs:12:5
57 |
58 12 | use crate::navigation;
59 | ^^^^^^^^^^^^^^^^^
60
61 warning: unused import: `highlight::Highlighter`
62 --> ayllu-web/src/routes/commit.rs:9:13
63 |
64 9 | use crate::{highlight::Highlighter, template::Base};
65 | ^^^^^^^^^^^^^^^^^^^^^^
66
67 warning: unused import: `debug_handler`
68 --> ayllu-web/src/routes/log.rs:5:5
69 |
70 5 | debug_handler,
71 | ^^^^^^^^^^^^^
72
73 warning: unused import: `config::Config`
74 --> ayllu-web/src/routes/rss.rs:18:13
75 |
76 18 | use crate::{config::Config, server::Ayllu};
77 | ^^^^^^^^^^^^^^
78
79 warning: variable does not need to be mutable
80 --> ayllu-web/src/routes/build.rs:269:15
81 |
82 269 | Extension(mut base): Extension<Base>,
83 | ----^^^^
84 | |
85 | help: remove this `mut`
86 |
87 = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
88
89 warning: variable does not need to be mutable
90 --> ayllu-web/src/routes/build.rs:407:15
91 |
92 407 | Extension(mut base): Extension<Base>,
93 | ----^^^^
94 | |
95 | help: remove this `mut`
96
97 warning: constant `EXAMPLE_CONFIG` is never used
98 --> ayllu-web/src/config.rs:13:11
99 |
100 13 | pub const EXAMPLE_CONFIG: &str = include_str!("../../config.example.toml");
101 | ^^^^^^^^^^^^^^
102 |
103 = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
104
105 warning: type alias `State` is never used
106 --> ayllu-web/src/middleware/error.rs:16:10
107 |
108 16 | pub type State = Arc<Config>;
109 | ^^^^^
110
111 warning: struct `NotFoundPage` is never constructed
112 --> ayllu-web/src/middleware/error.rs:20:8
113 |
114 20 | struct NotFoundPage<'a> {
115 | ^^^^^^^^^^^^
116
117 warning: struct `ErrorPage` is never constructed
118 --> ayllu-web/src/middleware/error.rs:28:8
119 |
120 28 | struct ErrorPage<'a> {
121 | ^^^^^^^^^
122
123 warning: function `middleware` is never used
124 --> ayllu-web/src/middleware/error.rs:34:14
125 |
126 34 | pub async fn middleware(req: extract::Request, next: Next) -> Response {
127 | ^^^^^^^^^^
128
129 warning: struct `KeyValue` is never constructed
130 --> ayllu-web/src/tabled_util_html.rs:10:12
131 |
132 10 | pub struct KeyValue {
133 | ^^^^^^^^
134
135 warning: type alias `Items` is never used
136 --> ayllu-web/src/template.rs:8:10
137 |
138 8 | pub type Items = Vec<(String, String, bool)>;
139 | ^^^^^
140
141 warning: function `info_bar` is never used
142 --> ayllu-web/src/template.rs:207:12
143 |
144 207 | pub fn info_bar(
145 | ^^^^^^^^
146
147 warning: function `friendly_duration_maybe` is never used
148 --> ayllu-web/src/template.rs:257:12
149 |
150 257 | pub fn friendly_duration_maybe(
151 | ^^^^^^^^^^^^^^^^^^^^^^^
152
153 warning: function `friendly_time_32` is never used
154 --> ayllu-web/src/template.rs:273:12
155 |
156 273 | pub fn friendly_time_32(epoch: &i32, _: &dyn askama::Values) -> askama::Result<String> {
157 | ^^^^^^^^^^^^^^^^
158
159 warning: function `friendly_time_maybe_32` is never used
160 --> ayllu-web/src/template.rs:277:12
161 |
162 277 | pub fn friendly_time_maybe_32(
163 | ^^^^^^^^^^^^^^^^^^^^^^
164
165 warning: function `colorized_state` is never used
166 --> ayllu-web/src/template.rs:306:12
167 |
168 306 | pub fn colorized_state(state: &State, _: &dyn askama::Values) -> askama::Result<Safe<String>> {
169 | ^^^^^^^^^^^^^^^
170
171 warning: `ayllu-web` (bin "ayllu-web") generated 21 warnings (run `cargo fix --bin "ayllu-web" -p ayllu-web` to apply 9 suggestions)
172 Finished `release` profile [optimized] target(s) in 58.91s