-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #330 from zowe/v2.x/staging
merge v2.x/staging into v2.x/rc
- Loading branch information
Showing
32 changed files
with
1,414 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build and Test Workflow | ||
name: Build configmgr | ||
on: | ||
push: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Build REXX configmgr | ||
on: | ||
push: | ||
branches: | ||
- v2.x/staging | ||
- v2.x/master | ||
- v2.x/rc | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
workflow_dispatch: | ||
inputs: | ||
PERFORM_RELEASE: | ||
description: '[Release] perform release' | ||
required: false | ||
default: 'false' | ||
|
||
|
||
jobs: | ||
check-permission: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# this action will fail the whole workflow if permission check fails | ||
- name: check permission | ||
uses: zowe-actions/shared-actions/permission-check@main | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
build-test: | ||
runs-on: ubuntu-latest | ||
needs: check-permission | ||
steps: | ||
- name: '[Prep 1] Checkout' | ||
uses: actions/checkout@v2 | ||
|
||
- name: '[Dep 1] Libyaml' | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: yaml/libyaml | ||
path: deps/configmgr/libyaml | ||
ref: '0.2.5' | ||
|
||
- name: '[Dep 2] Quickjs' | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: joenemo/quickjs-portable | ||
path: deps/configmgr/quickjs | ||
ref: 'main' | ||
|
||
- name: '[Prep 2] Setup jFrog CLI' | ||
uses: jfrog/setup-jfrog-cli@v2 | ||
env: | ||
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }} | ||
|
||
- name: '[Prep 3] Set date' | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y%m%d%S')" | ||
|
||
- name: '[Prep 4] Set version' | ||
id: version | ||
run: echo "::set-output name=version::$(cat build/configmgr.proj.env | grep VERSION | cut -f 2 -d=)" | ||
|
||
- name: '[Prep 5] Set branchname' | ||
id: branch | ||
run: echo "::set-output name=branch::$(if [ -n '${{ github.head_ref }}' ]; then echo '${{ github.head_ref }}'; else echo '${{ github.ref_name }}'; fi | sed 's@/@_@g')" | ||
|
||
|
||
- name: '[Prep 6] Prepare workflow' | ||
uses: zowe-actions/shared-actions/prepare-workflow@main | ||
|
||
|
||
- name: '[Packaging] Make pax' | ||
uses: zowe-actions/shared-actions/make-pax@main | ||
with: | ||
pax-name: 'configmgr-rexx' | ||
pax-options: '-x os390 -pp' | ||
pax-local-workspace: './.pax/configmgr-rexx' | ||
pax-ssh-username: ${{ secrets.SSH_MARIST_USERNAME }} | ||
pax-ssh-password: ${{ secrets.SSH_MARIST_RACF_PASSWORD }} | ||
|
||
- name: '[Publish] Publish' | ||
uses: zowe-actions/shared-actions/publish@main | ||
if: success() | ||
with: | ||
artifacts: | | ||
.pax/configmgr-rexx/configmgr-rexx.pax | ||
publish-target-path-pattern: libs-snapshot-local/org/zowe/configmgr-rexx/${{ steps.version.outputs.version }}-${{ steps.branch.outputs.branch }} | ||
publish-target-file-pattern: configmgr_rexx-${{ steps.version.outputs.version }}-${{ steps.date.outputs.date }}.pax | ||
perform-release: ${{ github.event.inputs.PERFORM_RELEASE }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/sh -e | ||
set -xe | ||
|
||
################################################################################ | ||
# This program and the accompanying materials are made available under the terms of the | ||
# Eclipse Public License v2.0 which accompanies this distribution, and is available at | ||
# https://www.eclipse.org/legal/epl-v20.html | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Copyright Contributors to the Zowe Project. | ||
################################################################################ | ||
|
||
|
||
# contants | ||
SCRIPT_NAME=$(basename "$0") | ||
SCRIPT_DIR=$(pwd) | ||
|
||
# build | ||
echo "$SCRIPT_NAME build_rexxcmgr.sh ..." | ||
STEPLIB=CBC.SCCNCMP "$SCRIPT_DIR/content/build/build_rexxcmgr.sh" | ||
|
||
echo "$SCRIPT_NAME build_rexxintfsh ..." | ||
STEPLIB=CBC.SCCNCMP "$SCRIPT_DIR/content/build/build_rexxintf.sh" | ||
|
||
|
||
# clean up content folder | ||
echo "$SCRIPT_NAME cleaning up pax folder ..." | ||
cd "$SCRIPT_DIR" | ||
mv content bak && mkdir -p content | ||
|
||
# move real files to the content folder | ||
echo "$SCRIPT_NAME coping files should be in pax ..." | ||
cd "$SCRIPT_DIR/content" | ||
cp ../bak/bin/ZWECFG31 . | ||
cp ../bak/bin/ZWECFG64 . | ||
cp ../bak/bin/ZWERXCFG . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/sh -e | ||
set -xe | ||
|
||
################################################################################ | ||
# This program and the accompanying materials are made available under the terms of the | ||
# Eclipse Public License v2.0 which accompanies this distribution, and is available at | ||
# https://www.eclipse.org/legal/epl-v20.html | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Copyright Contributors to the Zowe Project. | ||
################################################################################ | ||
|
||
################################################################################ | ||
# Prepare folders/files will be uploaded to Build/PAX server | ||
################################################################################ | ||
|
||
# contants | ||
SCRIPT_NAME=$(basename "$0") | ||
SCRIPT_DIR=$(dirname "$0") | ||
PAX_WORKSPACE_DIR=.pax/configmgr-rexx | ||
|
||
# make sure in project root folder | ||
cd $SCRIPT_DIR/../.. | ||
|
||
# prepare pax workspace | ||
echo "[${SCRIPT_NAME}] preparing folders ..." | ||
rm -fr "${PAX_WORKSPACE_DIR}/ascii" && mkdir -p "${PAX_WORKSPACE_DIR}/ascii" | ||
rm -fr "${PAX_WORKSPACE_DIR}/content" && mkdir -p "${PAX_WORKSPACE_DIR}/content" | ||
|
||
echo "[${SCRIPT_NAME}] copying files ..." | ||
cp -R * "${PAX_WORKSPACE_DIR}/ascii" | ||
# move files shouldn't change encoding to IBM-1047 to content folder | ||
rsync -rv \ | ||
--include '*/' \ | ||
--include '*.png' \ | ||
--exclude '*' \ | ||
--prune-empty-dirs --remove-source-files \ | ||
"${PAX_WORKSPACE_DIR}/ascii/" \ | ||
"${PAX_WORKSPACE_DIR}/content/" | ||
|
||
# update build information | ||
# BRANCH_NAME and BUILD_NUMBER is Jenkins environment variable | ||
commit_hash=$(git rev-parse --verify HEAD) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PROJECT="configmgr" | ||
VERSION=0.3.0 | ||
VERSION=0.4.0 | ||
DEPS="QUICKJS LIBYAML" | ||
|
||
QUICKJS="quickjs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.