Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
- cron: '00 15 * * *'
# enable manual trigger of version updates
workflow_dispatch:
# trigger on upstream repository tag events
repository_dispatch:
Copy link
Copy Markdown

@augmentcode augmentcode Bot May 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding a repository_dispatch trigger means anyone able to fire that dispatch can run this workflow with contents: write and the BUMP_TOKEN secret; please make sure the sender/payload is validated so this can’t be abused.

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

Comment thread
sachintu47 marked this conversation as resolved.
types: [upstream-release]
jobs:
bump:
runs-on: ubuntu-latest
Expand Down
7 changes: 4 additions & 3 deletions buildenv
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# bump: zoslib-version /ZOSLIB_VERSION="(.*)"/ https://github.com/zopencommunity/zoslib.git|semver:*
ZOSLIB_VERSION="4.0.1"

export ZOPEN_BUILD_LINE="DEV"
export ZOPEN_STABLE_TAG="v${ZOSLIB_VERSION}"
export ZOPEN_BUILD_LINE="STABLE"
export ZOPEN_CATEGORIES="library"
export ZOPEN_DEV_URL="https://github.com/zopencommunity/zoslib.git"
export ZOPEN_DEV_DEPS="make cmake coreutils"
export ZOPEN_STABLE_URL="https://github.com/zopencommunity/zoslib.git"
export ZOPEN_STABLE_DEPS="make cmake coreutils"
export ZOPEN_DONT_ADD_ZOSLIB_DEP=1 # zoslib cannot currently build with itself

export ZOPEN_CONFIGURE="cmake"
Expand Down
7 changes: 0 additions & 7 deletions cicd.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@ node('linux')
doGenerateSubmoduleConfigurations: false,
extensions: [],
userRemoteConfigs: [[url: "https://github.com/zopencommunity/zoslibport.git"]]])
// Poll changes from upstream
Copy link
Copy Markdown

@augmentcode augmentcode Bot May 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the upstream checkout means the Jenkins “Poll” stage will no longer detect changes/releases in zopencommunity/zoslib; please confirm there’s an alternate trigger path for rebuilding when upstream updates.

Severity: low

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

checkout([
$class: 'GitSCM',
branches: [[name: '*/zopen2']],
Comment thread
sachintu47 marked this conversation as resolved.
doGenerateSubmoduleConfigurations: false,
extensions: [],
userRemoteConfigs: [[url: "https://github.com/zopencommunity/zoslib.git"]]])
}
stage('Build') {
build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/zopencommunity/zoslibport.git'), string(name: 'PORT_DESCRIPTION', value: 'ZOSLIB is a z/OS C/C++ library. It is an extended implementation of the z/OS LE C Runtime Library.' )]
Expand Down
Loading