fix: use tagged dart images in ci
This commit is contained in:
parent
da0b3c4c46
commit
75dca4e950
|
|
@ -10,7 +10,8 @@ workflow:
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
FLUTTER_IMAGE_TAG: "3.0.5"
|
FLUTTER_IMAGE_TAG: "3.3.10"
|
||||||
|
DART_IMAGE_TAG: "2.18.6"
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
@ -36,7 +37,7 @@ coverage:
|
||||||
|
|
||||||
coverage_without_olm:
|
coverage_without_olm:
|
||||||
stage: test
|
stage: test
|
||||||
image: dart
|
image: dart:${DART_IMAGE_TAG}
|
||||||
dependencies: []
|
dependencies: []
|
||||||
variables:
|
variables:
|
||||||
NO_OLM: 1
|
NO_OLM: 1
|
||||||
|
|
@ -100,14 +101,14 @@ e2ee_test:
|
||||||
|
|
||||||
dry-run:
|
dry-run:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
image: dart
|
image: dart:${DART_IMAGE_TAG}
|
||||||
script:
|
script:
|
||||||
- dart pub get
|
- dart pub get
|
||||||
- dart pub publish --dry-run
|
- dart pub publish --dry-run
|
||||||
|
|
||||||
pub-dev:
|
pub-dev:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
image: dart
|
image: dart:${DART_IMAGE_TAG}
|
||||||
dependencies: [dry-run]
|
dependencies: [dry-run]
|
||||||
script:
|
script:
|
||||||
- |
|
- |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue