We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d686ee9 commit a8e3343Copy full SHA for a8e3343
.circleci/config.yml
@@ -213,6 +213,19 @@ jobs:
213
- store_test_results:
214
path: test/reports
215
216
+ - run:
217
+ name: Rename gem to a consistent name to store artifact
218
+ command: |
219
+ $Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
220
+ $rubyArchitecture = (ruby -e 'puts RUBY_PLATFORM').Trim()
221
+ $gemVersion = (Get-Content VERSION).Trim()
222
+
223
+ New-Item -Path . -Name "tested_artifact" -ItemType "directory"
224
+ Move-Item "artifacts/gems/tiny_tds-$gemVersion-$rubyArchitecture.gem" "tested_artifact"
225
226
+ - store_artifacts:
227
+ path: tested_artifact
228
229
cross_compile_gem:
230
parameters:
231
platform:
0 commit comments