File tree 11 files changed +21
-13
lines changed
catalyst_voices_packages/catalyst_cardano/catalyst_cardano/wallet-automation
11 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.2.15 AS mdlint-ci
4
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.2.15 AS cspell-ci
5
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.2.15 AS postgresql-ci
3
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.2.16 AS mdlint-ci
4
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.2.16 AS cspell-ci
5
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.2.16 AS postgresql-ci
6
6
7
7
FROM debian:stable-slim
8
8
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.15 AS rust-ci
3
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.16 AS rust-ci
4
4
5
5
# cspell: words rustfmt toolsets USERARCH stdcfgs
6
6
Original file line number Diff line number Diff line change 3
3
# the database and its associated software.
4
4
VERSION 0.8
5
5
6
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.2.15 AS postgresql-ci
6
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.2.16 AS postgresql-ci
7
7
8
8
# cspell: words
9
9
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/spectral:v3.2.15 AS spectral-ci
2
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/spectral:v3.2.16 AS spectral-ci
3
3
4
4
# test-lint-openapi - OpenAPI linting from an artifact
5
5
# testing whether the OpenAPI generated during build stage follows good practice.
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.2.15 AS python-ci
3
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.2.16 AS python-ci
4
4
5
5
builder :
6
6
FROM python-ci+python-base
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
3
IMPORT ../catalyst-gateway AS catalyst-gateway
4
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.15 AS flutter-ci
4
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.16 AS flutter-ci
5
5
6
6
# Copy all the necessary files and running bootstrap
7
7
builder :
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
3
IMPORT ../ AS catalyst-voices
4
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.15 AS flutter-ci
4
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.16 AS flutter-ci
5
5
6
6
# local-build-web - build web version of UIKit example.
7
7
# Prefixed by "local" to make sure it's not auto triggered, the target was
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.15 AS flutter-ci
3
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/playwright:v3.2.15 AS playwright-ci
2
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/flutter:v3.2.16 AS flutter-ci
3
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/playwright:v3.2.16 AS playwright-ci
4
4
5
5
deps :
6
6
DO playwright-ci+SETUP --workdir = /wallet-automation
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
VERSION 0.8
2
2
3
- IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.2.15 AS docs-ci
3
+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.2.16 AS docs-ci
4
4
5
5
IMPORT .. AS repo
6
6
IMPORT ../catalyst-gateway AS catalyst-gateway
Original file line number Diff line number Diff line change @@ -182,7 +182,14 @@ scripts:
182
182
183
183
# run tests, generate junit reports in /test_reports/ & code coverage report
184
184
melos exec -c 1 --dir-exists="test" -- \
185
- "flutter test --reporter expanded --coverage --machine | tojunit --output $MELOS_ROOT_PATH/test_reports/MELOS_PACKAGE_NAME.junit-report.xml"
185
+ 'OUTPUT=$(flutter test --reporter expanded --coverage --machine) ; \
186
+ EXIT_CODE=$? ; \
187
+ printf "%s" "$OUTPUT" | tojunit --output $MELOS_ROOT_PATH/test_reports/$MELOS_PACKAGE_NAME.junit-report.xml ; \
188
+ exit $EXIT_CODE'
189
+
190
+ # store the exit code after running the tests,
191
+ # this is the exit code for the whole script
192
+ EXIT_CODE=$?
186
193
187
194
# removes code coverage for generated code
188
195
melos exec -c 1 --dir-exists="test" -- \
@@ -194,6 +201,7 @@ scripts:
194
201
'lib/generated/**'
195
202
196
203
dart pub global run combine_coverage --repo-path=.
204
+ exit $EXIT_CODE
197
205
198
206
description : |
199
207
Run `flutter test` for all packages and generate junit and coverage reports.
You can’t perform that action at this time.
0 commit comments