Skip to content

Commit

Permalink
fix: added python, stubbed download
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Dec 16, 2024
1 parent 4c26770 commit 7d0eb58
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/zxc-verify-gradle-build-determinism.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ name: "ZXC: Verify Gradle Build Determinism"
# Z - Ensures sort order such that this script appears at the bottom of the UI
# X - Indicates it's not for direct user consumption
# C - Indicates this is a 'workflow_call' based reusable workflow

on:
workflow_call:
inputs:
Expand Down Expand Up @@ -150,10 +149,10 @@ jobs:
with:
ref: ${{ inputs.ref }}

# - name: Setup Python
# uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
# with:
# python-version: 3.9
- name: Setup Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.9

- name: Setup Java
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
Expand Down Expand Up @@ -182,12 +181,12 @@ jobs:
# env:
# CLOUDSDK_PYTHON: ${{ format('{0}{1}', env.pythonLocation, runner.os == 'Windows' && '\python.exe' || '/bin/python3') }}
#
# - name: Download Baseline
# env:
# CLOUDSDK_PYTHON: ${{ format('{0}{1}', env.pythonLocation, runner.os == 'Windows' && '\python.exe' || '/bin/python3') }}
# run: |
# mkdir -p "${GRADLE_MANIFEST_PATH}"
# cd "${GRADLE_MANIFEST_PATH}"
- name: Download Baseline
env:
CLOUDSDK_PYTHON: ${{ format('{0}{1}', env.pythonLocation, runner.os == 'Windows' && '\python.exe' || '/bin/python3') }}
run: |
mkdir -p "${GRADLE_MANIFEST_PATH}"
cd "${GRADLE_MANIFEST_PATH}"
# gsutil cp "${{ needs.generate-baseline.outputs.file }}" .
# tar -xzf "${{ needs.generate-baseline.outputs.name }}"

Expand Down

0 comments on commit 7d0eb58

Please sign in to comment.