Merge pull request #273 from mq-cloudpak/amf-9206

Update to 9.2.0.6 and Go 1.17
This commit is contained in:
Alex Mirski-Fitton
2022-07-07 14:05:36 +01:00
committed by GitHub Enterprise
6 changed files with 20 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ sudo: required
language: go
go:
- "1.16.12"
- "1.17.10"
services:
- docker
@@ -26,10 +26,10 @@ services:
env:
global:
- MAIN_BRANCH=v9.2.0.x-eus
- MQ_LTS_VERSION=9.2.0.5
- MQ_LTS_VERSION=9.2.0.6
- TAGCACHE_FILE=tagcache
- RELEASE=r2
- RELEASE_LTS=r3
- RELEASE_LTS=r1
go_import_path: "github.com/ibm-messaging/mq-container"
@@ -66,7 +66,7 @@ jobs:
- LTS=true
- TAGCACHE_FILE=tagcache-lts
- MQ_VERSION=$MQ_LTS_VERSION
- MQ_ARCHIVE_REPOSITORY=$MQ_9205_EUS_ARCHIVE_REPOSITORY_AMD64
- MQ_ARCHIVE_REPOSITORY=$MQ_9206_EUS_ARCHIVE_REPOSITORY_AMD64
- RELEASE=$RELEASE_LTS
script: bash -e travis-build-scripts/run.sh
- stage: build
@@ -78,7 +78,7 @@ jobs:
- TAGCACHE_FILE=tagcache-lts
- MQ_VERSION=$MQ_LTS_VERSION
- TEST_OPTS_DOCKER="-run TestGoldenPathWithMetrics"
- MQ_ARCHIVE_REPOSITORY=$MQ_9205_EUS_ARCHIVE_REPOSITORY_S390X
- MQ_ARCHIVE_REPOSITORY=$MQ_9206_EUS_ARCHIVE_REPOSITORY_S390X
- RELEASE=$RELEASE_LTS
script: bash -e travis-build-scripts/run.sh
- stage: push-manifest

View File

@@ -1,5 +1,10 @@
# Change log
## 9.2.0.6-LTS (2022-07-20)
* Updated to MQ version 9.2.0.6
* Updated to Go version 1.17
## 9.2.0.5-LTS (2022-01-25)
* Updated to MQ version 9.2.0.5

View File

@@ -1,4 +1,4 @@
# © Copyright IBM Corporation 2015, 2020
# © Copyright IBM Corporation 2015, 2022
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -13,11 +13,11 @@
# limitations under the License.
ARG BASE_IMAGE=registry.redhat.io/ubi8/ubi-minimal
ARG BASE_TAG=8.6-751.1655117800
ARG BASE_TAG=8.6-854
ARG BUILDER_IMAGE=registry.redhat.io/ubi8/go-toolset
ARG BUILDER_TAG=1.16.12-10
ARG BUILDER_TAG=1.17.10-4
ARG GO_WORKDIR=/opt/app-root/src/go/src/github.com/ibm-messaging/mq-container
ARG MQ_URL="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/9.2.0.5-IBM-MQ-Advanced-for-Developers-Non-Install-LinuxX64.tar.gz"
ARG MQ_URL="https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/9.2.0.6-IBM-MQ-Advanced-for-Developers-Non-Install-LinuxX64.tar.gz"
###############################################################################
# Build stage to build Go code
###############################################################################
@@ -56,7 +56,8 @@ RUN go test -v ./cmd/chkmqready/
RUN go test -v ./cmd/chkmqhealthy/
RUN go test -v ./pkg/...
RUN go test -v ./internal/...
RUN go vet ./cmd/... ./internal/...
# go 1.17 sigchanyzer check disabled for EUS stream as fix would introduce change of behaviour
RUN go vet -sigchanyzer=FALSE ./cmd/... ./internal/...
###############################################################################
# Main build stage, to build MQ image

View File

@@ -3,6 +3,6 @@
# MQ_VERSION is the fully qualified MQ version number to build
MQ_VERSION ?= 9.2.0.0
MQ_LTS_VERSION ?= 9.2.0.5
MQ_LTS_VERSION ?= 9.2.0.6
###########################################################################################################################################################

View File

@@ -16,7 +16,7 @@ docker run \
--env LICENSE=accept \
--env MQ_QMGR_NAME=QM1 \
--detach \
ibm-mqadvanced-server:9.2.0.5-amd64
ibm-mqadvanced-server:9.2.0.6-amd64
```
The MQ Advanced for Developers image does require the "chown", "setuid", "setgid" and "audit_write" capabilities (plus "dac_override" if you're using an image based on Red Hat Enterprise Linux). This is because it uses the "sudo" command to change passwords inside the container. For example, in Docker, you could do the following:
@@ -31,5 +31,5 @@ docker run \
--env LICENSE=accept \
--env MQ_QMGR_NAME=QM1 \
--detach \
ibm-mqadvanced-server-dev:9.2.0.5-amd64
ibm-mqadvanced-server-dev:9.2.0.6-amd64
```

View File

@@ -25,7 +25,7 @@ make advancedserver
You can specify the image to use directly by using the `MQ_IMAGE_ADVANCEDSERVER` or `MQ_IMAGE_DEVSERVER` variables, for example:
```
MQ_IMAGE_ADVANCEDSERVER=ibm-mqadvanced-server:9.2.0.5-amd64 make test-advancedserver
MQ_IMAGE_ADVANCEDSERVER=ibm-mqadvanced-server:9.2.0.6-amd64 make test-advancedserver
```
You can pass parameters to `go test` with an environment variable. For example, to run the "TestGoldenPath" test, run the following command: