@@ -10,7 +10,7 @@ release: &release
10
10
branches :
11
11
ignore : /.*/
12
12
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.*)/
14
14
15
15
parameters :
16
16
# we can't easily pin on osx
76
76
- run :
77
77
name : Check Rust lints
78
78
command : cargo clippy -- -D warnings
79
- - run :
80
- name : Lint JavaScript
81
- command : npm run --prefix router-bridge lint
82
79
83
80
test :
84
81
parameters :
@@ -97,37 +94,13 @@ jobs:
97
94
executor : minimal_linux
98
95
steps :
99
96
- 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
120
98
- run :
121
99
name : Publish to crates.io
122
100
command : |
123
101
# The tag looks like `<package-name>@v<version>`, but cargo wants `<package-name>@<version>`
124
102
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
131
104
132
105
# The machines we use to run our workflows on
133
106
executors :
@@ -179,28 +152,6 @@ commands:
179
152
- install_rust_toolchain :
180
153
platform : << parameters.platform >>
181
154
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
-
204
155
install_rust_toolchain :
205
156
parameters :
206
157
platform :
@@ -212,7 +163,6 @@ commands:
212
163
command : rustup target add $RUSTUP_TARGET
213
164
- run :
214
165
name : Set default rustc version
215
- # router-bridge does not currently work on newer Rust versions
216
166
command : |
217
- rustup install 1.76.0
218
- rustup default 1.76.0
167
+ rustup install stable
168
+ rustup default stable
0 commit comments