Skip to content

Commit

Permalink
test confirm
Browse files Browse the repository at this point in the history
  • Loading branch information
AmintorDusko committed Nov 8, 2023
1 parent 4ed9f49 commit 186c985
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/unit-test-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ jobs:
run: |
echo ${{ steps.continue.outputs.reference_benchmarks }}
echo ${{ steps.continue.outputs.reference_benchmarks == true }}
echo ${{ steps.continue.outputs.reference_benchmarks == 'true' }}
echo ${{ steps.continue.outputs.confirm }}
echo ${{ steps.continue.outputs.confirm == true }}
echo ${{ steps.continue.outputs.confirm == 'true' }}
Expand Down Expand Up @@ -139,19 +140,19 @@ jobs:
pip install -r requirements-dev.txt --upgrade
- name: Install PyTorch
if: ${{ (inputs.install_pytorch == 'true') && (steps.continue.outputs.check == 'true') }}
if: ${{ (inputs.install_pytorch == true) && (steps.continue.outputs.check == 'true') }}
env:
TORCH_VERSION: ${{ inputs.pytorch_version != '' && format('=={0}', inputs.pytorch_version) || '' }}
run: pip install "torch${{ env.TORCH_VERSION }}" -f https://download.pytorch.org/whl/torch_stable.html

- name: Install TensorFlow
if: ${{ (inputs.install_tensorflow == 'true') && (steps.continue.outputs.check == 'true') }}
if: ${{ (inputs.install_tensorflow == true) && (steps.continue.outputs.check == 'true') }}
env:
TF_VERSION: ${{ inputs.tensorflow_version != '' && format('~={0}', inputs.tensorflow_version) || '' }}
run: pip install "tensorflow${{ env.TF_VERSION }}" "keras${{ env.TF_VERSION }}"

- name: Install JAX
if: ${{ (inputs.install_jax == 'true') && (steps.continue.outputs.check == 'true') }}
if: ${{ (inputs.install_jax == true) && (steps.continue.outputs.check == 'true') }}
env:
JAX_VERSION: ${{ inputs.jax_version != '' && format('=={0}', inputs.jax_version) || '' }}
run: pip install "jax${{ env.JAX_VERSION}}" "jaxlib${{ env.JAX_VERSION }}"
Expand Down

0 comments on commit 186c985

Please sign in to comment.