Commit dbee0f47 authored by Totara-thib's avatar Totara-thib
Browse files

ci(go_unit_test): update docker image into 1.19.3

parent 0c1b2c64
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Changelog
All notable changes to this job will be documented in this file.

## [1.3.0] - 2022-11-08
* Update docker image version into golang 1.19.3

## [1.2.0] - 2022-06-13
* Add docker image tag in variable 

+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ Execute your golang unit tests and have the results fully integrated with the va
| ---- | ----------- | ------- |
| `UT_WORK_DIR` | If for any reason (monorepo for example) your go project is not at root of project, specify the relative path to the project | `$CI_PROJECT_DIR` |
| `UT_TEST_CMD` | Customise the test command if needed | `go test -v` |
| `IMAGE_TAG` | The default tag for the docker image | `1.18`  |
| `IMAGE_TAG` | The default tag for the docker image | `1.19.3`  |



+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ go_unit_test:
  variables:
    UT_WORK_DIR: $CI_PROJECT_DIR
    UT_TEST_CMD: "go test -v"
    IMAGE_TAG: "1.18"
    IMAGE_TAG: "1.19.3"
  script:
    # Switch to working directory
    - cd "$UT_WORK_DIR"