Skip to content

Commit d4c550d

Browse files
dmakarovLucasSte
authored andcommitted
[SOL] Update references to solana-labs redirecting them to anza-xyz
1 parent 6fd02e1 commit d4c550d

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
ARTIFACTS_AWS_ACCESS_KEY_ID: AKIA46X5W6CZN24CBO55
192192
AWS_REGION: us-west-1
193193
CACHE_DOMAIN: ci-caches.rust-lang.org
194-
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/heads/solana-') && github.repository == 'solana-labs/rust'"
194+
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/heads/anza-') && github.repository == 'anza-xyz/rust'"
195195
strategy:
196196
matrix:
197197
include:

Cargo.lock

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -739,9 +739,8 @@ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
739739

740740
[[package]]
741741
name = "compiler_builtins"
742-
version = "0.1.109"
743-
source = "registry+https://github.com/rust-lang/crates.io-index"
744-
checksum = "f11973008a8cf741fe6d22f339eba21fd0ca81e2760a769ba8243ed6c21edd7e"
742+
version = "0.1.103"
743+
source = "git+https://github.com/anza-xyz/compiler-builtins?tag=solana-tools-v1.40#81ef46f3fe1357095acdd089a700890fe4e13974"
745744
dependencies = [
746745
"cc",
747746
"rustc-std-workspace-core",

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ debug = 0
107107
strip = true
108108

109109
[patch.crates-io]
110-
compiler_builtins = { git = "https://github.com/solana-labs/compiler-builtins", tag = "solana-tools-v1.40" }
110+
compiler_builtins = { git = "https://github.com/anza-xyz/compiler-builtins", tag = "solana-tools-v1.40" }
111111
# See comments in `library/rustc-std-workspace-core/README.md` for what's going on
112112
# here
113113
rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
This fork of Rust contains changes that enable rustc to build BPF
44
modules. It depends on a customized
5-
[fork](https://github.com/solana-labs/llvm-project) of Rust's LLVM
5+
[fork](https://github.com/anza-xyz/llvm-project) of Rust's LLVM
66
fork.
77

8-
Solana SDK does not depend directly on this repo. Instead [bpf-tools]
8+
Solana SDK does not depend directly on this repo. Instead [platform-tools]
99
builds and releases binary packages that the Solana SDK pulls in.
1010

11-
[bpf-tools]: https://github.com/solana-labs/bpf-tools
11+
[platform-tools]: https://github.com/anza-xyz/platform-tools
1212

1313
BPF modules are built using target triple `bpfel-unknown-unknown`
1414
which represents the little endian version of BPF. There is no
@@ -40,8 +40,8 @@ After this repository is tagged for a new release, update the
4040
version of the rust repository and make a new release tag in
4141
[bpf-tools] repository.
4242

43-
[compiler-builtins]: https://github.com/solana-labs/compiler-builtins
44-
[llvm-project]: https://github.com/solana-labs/llvm-project
43+
[compiler-builtins]: https://github.com/anza-xyz/compiler-builtins
44+
[llvm-project]: https://github.com/anza-xyz/llvm-project
4545

4646
---
4747

src/ci/docker/host-x86_64/sbf-solana-solana/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ENV RUSTUP_INIT_SKIP_PATH_CHECK="yes"
2222
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
2323

2424
RUN PATH="${HOME}/.cargo/bin:${PATH}" \
25-
cargo install --git https://github.com/solana-labs/cargo-run-solana-tests.git \
25+
cargo install --git https://github.com/anza-xyz/cargo-run-solana-tests.git \
2626
--rev f7c1d109367c0ab4167d2eb41712777bcc66c9a4 \
2727
--bin cargo-run-solana-tests --root /usr/local
2828

src/ci/github-actions/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ jobs:
386386
name: push
387387
env:
388388
<<: [*shared-ci-variables, *prod-variables]
389-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/solana-') && github.repository == 'solana-labs/rust'
389+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/anza-') && github.repository == 'anza-xyz/rust'
390390
strategy:
391391
matrix:
392392
include:

src/tools/tidy/src/extdeps.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::path::Path;
55

66
/// List of allowed sources for packages.
77
const ALLOWED_SOURCES: &[&str] = &["\"registry+https://github.com/rust-lang/crates.io-index\"",
8-
"\"git+https://github.com/solana-labs/compiler-builtins?tag=solana-tools-v1.40#81ef46f3fe1357095acdd089a700890fe4e13974\""];
8+
"\"git+https://github.com/anza-xyz/compiler-builtins?tag=solana-tools-v1.40#81ef46f3fe1357095acdd089a700890fe4e13974\""];
99

1010
/// Checks for external package sources. `root` is the path to the directory that contains the
1111
/// workspace `Cargo.toml`.

0 commit comments

Comments
 (0)