Skip to content
Open
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
306 changes: 305 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ repository = "https://github.com/roc-lang/basic-cli"

[workspace.dependencies]
# Core Roc types
# roc-nightly: 2026-01-12
roc_std_new = { git = "https://github.com/roc-lang/roc", rev = "36e9ff29fed0ebe6e9d47e30c14bc2d0a2545a5f" }
# roc-nightly: 2026-02-20
roc_std_new = { git = "https://github.com/roc-lang/roc", rev = "c5d87ef595fdc1c8b28dfdb6ebbe5b44ddea966f" }

# Internal crates
roc_io_error = { path = "crates/roc_io_error" }
Expand Down
4 changes: 2 additions & 2 deletions ci/all_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ echo ""
echo "=== Checking examples ==="
for example in "${MIGRATED_EXAMPLES[@]}"; do
echo "Checking: ${example}.roc"
roc check "examples/${example}.roc"
roc check --no-cache "examples/${example}.roc"
done

# roc build migrated examples
Expand All @@ -194,7 +194,7 @@ else
fi
for example in "${MIGRATED_EXAMPLES[@]}"; do
echo "Building: ${example}.roc"
roc build "examples/${example}.roc"
roc build --no-cache "examples/${example}.roc"
mv "./${example}" "examples/"
done

Expand Down
Loading
Loading