Skip to content

Commit

Permalink
iii
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Nov 15, 2023
1 parent 39b0fd4 commit 38f58ff
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
# Enable faster sparse index on nightly
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
# echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
- name: "Setup Rust toolchain"
uses: dtolnay/rust-toolchain@master
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,13 @@ jobs:
- name: Build nextest
timeout-minutes: 120
run: |
rustup show
cargo --version
#cargo metadata --locked
#cargo metadata --frozen
ls
cat ./Cargo.lock
cargo verify-project
cargo tp-pre-test
- name: Run nextest
timeout-minutes: 120
Expand Down Expand Up @@ -895,6 +902,13 @@ jobs:
- name: Build nextest
timeout-minutes: 120
run: |
ls
cat ./Cargo.lock
cargo verify-project
cargo check
cargo clean
rm -rf ~/.cargo/registry/
rm -rf ~/.cargo/git/
cargo tp-pre-test
- name: Run nextest (Mac)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ lto = "off"
[workspace.dependencies]
async-recursion = "1.0.2"
# Keep consistent with preset_env_base through swc_core
browserslist-rs = { version = "0.12.2" }
browserslist-rs = { version = "*" }

mdxjs = "0.1.19"
modularize_imports = { version = "0.55.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/turbopack-ecmascript/src/references/esm/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl ChunkableModuleReference for UrlAssetReference {
Vc::cell(Some(ChunkingType::Parallel))
}
}

//test
#[turbo_tasks::value_impl]
impl CodeGenerateable for UrlAssetReference {
#[turbo_tasks::function]
Expand Down

0 comments on commit 38f58ff

Please sign in to comment.