Commit 807b71c
Axel von Bertoldi
Update steps version to 0.2.0
Steps v0.2.0 was released recently, and made some backward-incompatible
breaking changes. Because of the way the
registry.gitlab.com/gitlab-org/step-runner:v0 image is released (the
same v0 tag is reused for all releases), the steps integration
integration tests started failing with:
ERROR: Job failed (system failure): container exec on "6b6d4cefa3ed71e4f97254736db4c05ff815032ae00fb9585688099c6235ab70" finished with: executing step request: running run request for job "0": rpc error: code = Unknown desc = loading step: reading steps "{}\n---\nsteps:\n- name: echo\n script: echo ${{ env.FLIN_FLAN_FLON }}\n": validating step: jsonschema: '' does not validate with https://gitlab.com/gitlab-org/step-runner/schema/v1/step#/$ref/oneOf/0/required: missing properties: 'name', 'step'
This is because we're using a 0.1.0 version of the library, but a 0.2.0
of the binary (included in the above image)
Elsewhere I have made these tests to be skipped by setting the
CI_SKIP_STEPS_TESTS variable, but to fix this we have to upgrade to
v0.2.0 of the steps library.
With the 0.2.0 release, the step
https://gitlab.com/gitlab-org/ci-cd/runner-tools/echo-step was also
changed, and since we use that step in the test, we have to also update
the version we use to `@v4` from `@v3`.
I'll remove the CI_SKIP_STEPS_TESTS variable when this MR is merged.1 parent 8db5962 commit 807b71c
File tree
3 files changed
+7
-7
lines changed- executors/docker
- steps
3 files changed
+7
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments