Skip to content

Commit

Permalink
Merge pull request denoland#2 from arthurprs/main
Browse files Browse the repository at this point in the history
Use getditto fork as the default mirror & Disable debug builds
  • Loading branch information
arthurprs authored Mar 14, 2022
2 parents 1b9c50a + 3393419 commit 58b3354
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:
'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')) }}
matrix:
config:
- os: macOS-latest
target: x86_64-apple-darwin
variant: debug
cargo: cargo
# - os: macOS-latest
# target: x86_64-apple-darwin
# variant: debug
# cargo: cargo

- os: macOS-latest
target: x86_64-apple-darwin
variant: release
cargo: cargo

- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
target: x86_64-unknown-linux-gnu
variant: debug
cargo: cargo
# - os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
# target: x86_64-unknown-linux-gnu
# variant: debug
# cargo: cargo

- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }}
target: x86_64-unknown-linux-gnu
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fn static_lib_url() -> String {
if let Ok(custom_archive) = env::var("RUSTY_V8_ARCHIVE") {
return custom_archive;
}
let default_base = "https://github.com/denoland/rusty_v8/releases/download";
let default_base = "https://github.com/getditto/rusty_v8/releases/download";
let base =
env::var("RUSTY_V8_MIRROR").unwrap_or_else(|_| default_base.into());
let version = env::var("CARGO_PKG_VERSION").unwrap();
Expand Down

0 comments on commit 58b3354

Please sign in to comment.