Skip to content

Commit 31c2219

Browse files
remove router-bridge (#603)
Now that the router has updated its MSRV to a version which is not supported by deno, keeping `router-bridge` around breaks the release process for `apollo-composition`. This commit removes it entirely while also bumping the version of rust used by circleci to the latest stable version.
2 parents 201efcc + 0bef5db commit 31c2219

File tree

101 files changed

+41
-16415
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+41
-16415
lines changed

.circleci/config.yml

+5-55
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ release: &release
1010
branches:
1111
ignore: /.*/
1212
tags: # To trigger a release, push a tag with the format `package-name@vversion`. Like `[email protected]`
13-
only: /(apollo-federation-types@v.*)|(router-bridge@v.*)|(apollo-composition@v.*)/
13+
only: /(apollo-federation-types@v.*)|(apollo-composition@v.*)/
1414

1515
parameters:
1616
# we can't easily pin on osx
@@ -76,9 +76,6 @@ jobs:
7676
- run:
7777
name: Check Rust lints
7878
command: cargo clippy -- -D warnings
79-
- run:
80-
name: Lint JavaScript
81-
command: npm run --prefix router-bridge lint
8279

8380
test:
8481
parameters:
@@ -97,37 +94,13 @@ jobs:
9794
executor: minimal_linux
9895
steps:
9996
- checkout
100-
# this is run in order to create the JavaScript bundles
101-
# that are needed by `cargo publish`, which is only necessary for router-bridge
102-
- when:
103-
condition:
104-
matches:
105-
pattern: ^router-bridge@.*
106-
value: << pipeline.git.tag >>
107-
steps:
108-
- install_system_deps:
109-
platform: minimal_linux
110-
- run:
111-
command: cargo build --release --target $RUSTUP_TARGET
112-
- when: # Don't need Node stuff, just install Rust
113-
condition:
114-
not:
115-
matches:
116-
pattern: ^router-bridge@.*
117-
value: << pipeline.git.tag >>
118-
steps:
119-
- rust/install
97+
- rust/install
12098
- run:
12199
name: Publish to crates.io
122100
command: |
123101
# The tag looks like `<package-name>@v<version>`, but cargo wants `<package-name>@<version>`
124102
CARGO_VERSION=$(echo $CIRCLE_TAG | sed 's/@v/@/')
125-
# If this is router-bridge, we need to `--allow-dirty` for the JavaScript bundle
126-
if [ "$PACKAGE_NAME" == "router-bridge"* ]; then
127-
cargo publish -p $CARGO_VERSION --allow-dirty
128-
else
129-
cargo publish -p $CARGO_VERSION
130-
fi
103+
cargo publish -p $CARGO_VERSION
131104
132105
# The machines we use to run our workflows on
133106
executors:
@@ -179,28 +152,6 @@ commands:
179152
- install_rust_toolchain:
180153
platform: << parameters.platform >>
181154

182-
- install_volta:
183-
platform: << parameters.platform >>
184-
185-
install_volta:
186-
parameters:
187-
platform:
188-
type: executor
189-
steps:
190-
- run:
191-
name: Install volta
192-
command: |
193-
curl https://get.volta.sh | bash -s -- --skip-setup
194-
echo 'export VOLTA_HOME=$HOME/.volta' >> $BASH_ENV
195-
echo 'export PATH=$VOLTA_HOME/bin:$PATH' >> $BASH_ENV
196-
197-
- run:
198-
name: Install default versions of npm and node
199-
command: |
200-
volta install node@16
201-
volta install npm@8
202-
203-
204155
install_rust_toolchain:
205156
parameters:
206157
platform:
@@ -212,7 +163,6 @@ commands:
212163
command: rustup target add $RUSTUP_TARGET
213164
- run:
214165
name: Set default rustc version
215-
# router-bridge does not currently work on newer Rust versions
216166
command: |
217-
rustup install 1.76.0
218-
rustup default 1.76.0
167+
rustup install stable
168+
rustup default stable

0 commit comments

Comments
 (0)