Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use organizational variables
Browse files Browse the repository at this point in the history
Skip-PR-comments: true
Run-GHA: true

Required-githooks: true

Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
brianjmurrell committed Dec 3, 2024
1 parent 3ae71a8 commit 8e3bd97
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/rpm-build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
name: RPM Build and Test

env:
# see https://github.com/organizations/daos-stack/settings/variables/actions for
# the organizational defaults values for these variables
# TODO: we really need to define a list of supported versions (ideally it's no more than 2)
# build is done on the lowest version and test on the highest with a "sanity test"
# stage done on all versions in the list ecept the highest
EL8_BUILD_VERSION: 8.6
EL8_VERSION: 8.8
EL9_BUILD_VERSION: 9.4
EL9_VERSION: 9.4
LEAP15_VERSION: 15.5
# EL8_BUILD_VERSION: 8.6
# EL8_VERSION: 8.8
# EL9_BUILD_VERSION: 9.4
# EL9_VERSION: 9.4
# LEAP15_VERSION: 15.5
# Which distros to build for
DISTROS: el8 el9 leap15
TEST_TAG: pr
PACKAGING_DIR: .
# DISTROS: el8 el9 leap15
# TEST_TAG: pr
# PACKAGING_DIR: .
NAME: argobots

on:
@@ -55,9 +57,9 @@ jobs:
outputs:
NAME: ${{ env.NAME }}
DISTROS: ${{ env.DISTROS }}
EL8_BUILD_VERSION: ${{ env.EL8_BUILD_VERSION }}
EL9_BUILD_VERSION: ${{ env.EL9_BUILD_VERSION }}
LEAP15_VERSION: ${{ env.LEAP15_VERSION }}
EL8_BUILD_VERSION: ${{ env.EL8_BUILD_VERSION_MASTER }}
EL9_BUILD_VERSION: ${{ env.EL9_BUILD_VERSION_MASTER }}
LEAP15_VERSION: ${{ env.LEAP15_VERSION_MASTER }}
PACKAGING_DIR: ${{ env.PACKAGING_DIR }}
TEST_TAG: ${{ env.TEST_TAG }}
steps:

0 comments on commit 8e3bd97

Please sign in to comment.