Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmcmu committed Jan 9, 2024
1 parent c188bfc commit d2e71c8
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/baremetal-regression-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,9 @@ jobs:
- uses: actions/checkout@v3
with:
# ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
fetch-tags: true

# - name: Rebase
# if: github.event_name == 'pull_request'
# run: |
# git config user.email '[email protected]'
# git config user.name 'hpccsystems development'
# git rebase origin/${{ github.event.pull_request.base.ref }}
# git log --pretty=one -n 15

- name: Extract Latest Tagged Version
id: extract_version
env:
Expand Down Expand Up @@ -75,15 +66,6 @@ jobs:
def getTagVersionForCmd(cmd):
versionPattern = re.compile(r'.*([0-9]+\.[0-9]+\.[0-9]+).*')
# Echo git tag command
print('Running: ' + cmd)
# Print current directory
print('Current directory: ' + os.getcwd())
# List files in current directory
print('Files in current directory: ' + str(os.listdir()))
# Get latest release version
gitTagProcess = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)
(output, err) = gitTagProcess.communicate()
Expand Down Expand Up @@ -124,6 +106,7 @@ jobs:
return getTagVersionForCmd(findLatestBranchVer)
branch_name = os.environ['BRANCH_NAME']
print("Branch Name: " + branch_name)
latestVersion = getLatestBranchVersion(branch_name)
latestVersionURL = 'https://cdn.hpccsystems.com/releases/CE-Candidate-' + latestVersion + '/bin/platform/hpccsystems-platform-community_' + latestVersion + '-1jammy_amd64_withsymbols.deb'
Expand Down

0 comments on commit d2e71c8

Please sign in to comment.