Create MQ RHEL buildah build
This commit is contained in:
85
Makefile
Normal file
85
Makefile
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
# © Copyright IBM Corporation 2018
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Build targets
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
# default to building UBUNTU as this was the default for the previous Makefile
|
||||||
|
.PHONY: build-devserver
|
||||||
|
build-devserver: build-devserver-ubuntu
|
||||||
|
|
||||||
|
.PHONY: build-advancedserver
|
||||||
|
build-advancedserver: build-advancedserver-ubuntu
|
||||||
|
|
||||||
|
.PHONY: test-devserver
|
||||||
|
test-devserver: test-devserver-ubuntu
|
||||||
|
|
||||||
|
.PHONY: test-advancedserver
|
||||||
|
test-advancedserver: test-advancedserver-ubuntu
|
||||||
|
|
||||||
|
.PHONY: deps
|
||||||
|
deps: deps-ubuntu
|
||||||
|
|
||||||
|
.PHONY: lint
|
||||||
|
lint: lint-ubuntu
|
||||||
|
|
||||||
|
# UBUNTU building targets
|
||||||
|
.PHONY: build-devserver-ubuntu
|
||||||
|
build-devserver-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU build-devserver
|
||||||
|
|
||||||
|
.PHONY: test-devserver-ubuntu
|
||||||
|
test-devserver-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU test-devserver
|
||||||
|
|
||||||
|
.PHONY: build-devjmstest
|
||||||
|
build-devjmstest:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU build-devjmstest
|
||||||
|
|
||||||
|
.PHONY: build-devjmstest-ubuntu
|
||||||
|
$(MAKE) -f Makefile-UBUNTU build-devjmstest
|
||||||
|
|
||||||
|
.PHONY: build-advancedserver-ubuntu
|
||||||
|
build-advancedserver-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU build-advancedserver
|
||||||
|
|
||||||
|
.PHONY: test-advancedserver-ubuntu
|
||||||
|
test-advancedserver-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU test-advancedserver
|
||||||
|
|
||||||
|
.PHONY: deps-ubuntu
|
||||||
|
deps-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU deps
|
||||||
|
|
||||||
|
.PHONY: lint-ubuntu
|
||||||
|
lint-ubuntu:
|
||||||
|
$(MAKE) -f Makefile-UBUNTU lint
|
||||||
|
|
||||||
|
# RHEL building targets
|
||||||
|
.PHONY: build-devserver-rhel
|
||||||
|
build-devserver-rhel:
|
||||||
|
$(MAKE) -f Makefile-RHEL build-devserver
|
||||||
|
|
||||||
|
.PHONY: test-devserver-rhel
|
||||||
|
test-devserver-rhel:
|
||||||
|
$(MAKE) -f Makefile-RHEL test-devserver
|
||||||
|
|
||||||
|
.PHONY: build-advancedserver-rhel
|
||||||
|
build-advancedserver-rhel:
|
||||||
|
$(MAKE) -f Makefile-RHEL build-advancedserver
|
||||||
|
|
||||||
|
.PHONY: test-advancedserver-rhel
|
||||||
|
test-advancedserver-rhel:
|
||||||
|
$(MAKE) -f Makefile-RHEL test-advancedserver
|
||||||
1
mq-advanced-server-rhel/ansible/.gitignore
vendored
1
mq-advanced-server-rhel/ansible/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
hosts
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
# © Copyright IBM Corporation 2018
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
---
|
|
||||||
# Sets up a server for building the Red Hat image.
|
|
||||||
- hosts: rhbuild
|
|
||||||
become: true
|
|
||||||
any_errors_fatal: true
|
|
||||||
tasks:
|
|
||||||
- name: install buildah
|
|
||||||
package:
|
|
||||||
name: buildah
|
|
||||||
state: present
|
|
||||||
when: ansible_distribution == "RedHat"
|
|
||||||
- name: install podman
|
|
||||||
package:
|
|
||||||
name: buildah
|
|
||||||
state: present
|
|
||||||
when: ansible_distribution == "RedHat"
|
|
||||||
- name: install make
|
|
||||||
package:
|
|
||||||
name: make
|
|
||||||
state: present
|
|
||||||
@@ -1,11 +1,47 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# -*- mode: sh -*-
|
||||||
|
# © Copyright IBM Corporation 2018
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
# Builds and tests the golang programs used by the MQ image.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd $GOPATH/src/github.com/ibm-messaging/mq-container/
|
||||||
|
|
||||||
# Build and test the Go code
|
# Build and test the Go code
|
||||||
go build ./cmd/runmqserver/
|
mkdir -p build
|
||||||
go build ./cmd/chkmqready/
|
cd build
|
||||||
go build ./cmd/chkmqhealthy/
|
|
||||||
go test -v ./cmd/runmqserver/
|
rm -f chkmqready chkmqhealthy runmqserver runmqdevserver
|
||||||
go test -v ./cmd/chkmqready/
|
|
||||||
go test -v ./cmd/chkmqhealthy/
|
if [ "$MQDEV" = "TRUE" ]; then
|
||||||
go test -v ./internal/...
|
# Build and test the Go code
|
||||||
go vet ./cmd/... ./internal/...
|
go build -ldflags "-X \"main.ImageCreated=$(date --iso-8601=seconds)\" -X \"main.ImageRevision=$IMAGE_REVISION\" -X \"main.ImageSource=$IMAGE_SOURCE\"" --tags 'mqdev' ../cmd/runmqserver/
|
||||||
|
go build ../cmd/runmqdevserver/
|
||||||
|
else
|
||||||
|
go build -ldflags "-X \"main.ImageCreated=$(date --iso-8601=seconds)\" -X \"main.ImageRevision=$IMAGE_REVISION\" -X \"main.ImageSource=$IMAGE_SOURCE\"" ../cmd/runmqserver/
|
||||||
|
fi
|
||||||
|
|
||||||
|
go build ../cmd/chkmqready/
|
||||||
|
go build ../cmd/chkmqhealthy/
|
||||||
|
go test -v ../cmd/runmqserver/
|
||||||
|
go test -v ../cmd/chkmqready/
|
||||||
|
go test -v ../cmd/chkmqhealthy/
|
||||||
|
if [ "$MQDEV" = "TRUE" ]; then
|
||||||
|
go test -v ../cmd/runmqdevserver
|
||||||
|
fi
|
||||||
|
go test -v ../internal/...
|
||||||
|
go vet ../cmd/... ../internal/...
|
||||||
|
|||||||
Reference in New Issue
Block a user