Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .yarn/install-state.gz
Binary file not shown.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[workspace]
members = ["apps/counter"]
resolver = "2"
[workspace.package]
edition = "2021"
edition = "2024"
8 changes: 1 addition & 7 deletions apps/counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,4 @@ iced = { version = "0.13.1", features = ["debug"] }
tracing-subscriber = "0.3"

[target.'cfg(target_arch = "wasm32")'.dependencies]
iced = { version = "0.13.1", features = [
"debug",
"wgpu",
"tiny-skia",
"webgl",
"fira-sans",
] }
iced = { version = "0.13.1", features = ["debug", "webgl"] }
2 changes: 1 addition & 1 deletion apps/counter/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use iced::widget::{button, column, row, text, Column, Row};
use iced::widget::{button, column, row, text, Column};
use iced::Center;

pub fn main() -> iced::Result {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
WithExec([]string{"apt-get", "update"}).
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}).
// curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}).
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.51.4 --yes"}).
WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).
WithEnvVariable("PATH", "$PATH:$PROTO_HOME/shims:$PROTO_HOME/bin", dagger.ContainerWithEnvVariableOpts{Expand: true})

Expand Down
2 changes: 1 addition & 1 deletion etc/workflow-runtime/src/workflow_runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
WithExec([]string{"apt-get", "update"}).
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}).
// curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}).
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.51.4 --yes"}).
WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).
WithEnvVariable("PATH", "$PATH:$PROTO_HOME/shims:$PROTO_HOME/bin", dagger.ContainerWithEnvVariableOpts{Expand: true})

Expand Down