tangled
alpha
login
or
join now
tsiry-sandratraina.com
/
tunein-cli
6
fork
atom
Browse and listen to thousands of radio stations across the globe right from your terminal ๐ ๐ป ๐ตโจ
radio
rust
tokio
web-radio
command-line-tool
tui
6
fork
atom
overview
issues
pulls
pipelines
ci: fix protoc
tsiry-sandratraina.com
1 year ago
1d075597
e509d68f
+7
2 changed files
expand all
collapse all
unified
split
.fluentci
src
dagger
jobs.ts
tools
protoc
+5
.fluentci/src/dagger/jobs.ts
···
116
"TARGET",
117
Deno.env.get("TARGET") || "x86_64-unknown-linux-gnu",
118
)
0
0
0
0
0
119
.withExec(["sh", "-c", "rustup target add $TARGET"])
120
.withExec(["sh", "-c", "cargo build --release --target $TARGET"])
121
.withExec(["sh", "-c", "cp target/${TARGET}/release/tunein ."])
···
116
"TARGET",
117
Deno.env.get("TARGET") || "x86_64-unknown-linux-gnu",
118
)
119
+
.withExec([
120
+
"sh",
121
+
"-c",
122
+
"mv /usr/bin/protoc /usr/bin/_protoc && cp tools/protoc /usr/bin/protoc && chmod a+x /usr/bin/protoc",
123
+
])
124
.withExec(["sh", "-c", "rustup target add $TARGET"])
125
.withExec(["sh", "-c", "cargo build --release --target $TARGET"])
126
.withExec(["sh", "-c", "cp target/${TARGET}/release/tunein ."])
+2
tools/protoc
···
0
0
···
1
+
#!/bin/bash
2
+
_protoc --experimental_allow_proto3_optional "$@"