Skip to content

Commit

Permalink
try without new section to check for yaml error
Browse files Browse the repository at this point in the history
  • Loading branch information
aclegg3 committed Nov 20, 2024
1 parent 8e5956f commit ac6e70f
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/install_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,32 +175,32 @@ jobs:
#- name: Debugging with tmate
# uses: mxschmitt/action-tmate@v3.18

build_conda_binaries:
runs-on: 4-core-ubuntu-gpu-t4
env:
AIHABITAT_CONDA_USERNAME: aihabitat
AIHABITAT_CONDA_PWD: ${{ secrets.AIHABITAT_CONDA_PWD }}
AIHABITAT_NIGHTLY_CONDA_USERNAME: aihabitat-nightly
AIHABITAT_NIGHTLY_CONDA_PWD: ${{ secrets.AIHABITAT_NIGHTLY_CONDA_PWD }}
# build_conda_binaries:
# runs-on: 4-core-ubuntu-gpu-t4
# env:
# AIHABITAT_CONDA_USERNAME: aihabitat
# AIHABITAT_CONDA_PWD: ${{ secrets.AIHABITAT_CONDA_PWD }}
# AIHABITAT_NIGHTLY_CONDA_USERNAME: aihabitat-nightly
# AIHABITAT_NIGHTLY_CONDA_PWD: ${{ secrets.AIHABITAT_NIGHTLY_CONDA_PWD }}

defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4.1.1
with:
path: "./habitat-sim"
- name: Set modality variable
echo "CI_TEST=$(echo ${{ github.event_name }} == 'pull_request'" >> $GITHUB_ENV
- name: Build conda Linux packages
run: |-
cd habitat-sim/conda-build
echo "Current event name: $GITHUB_EVENT_NAME"
echo ${{ env.CI_TEST }}
# defaults:
# run:
# shell: bash -el {0}
# steps:
# - uses: actions/checkout@v4.1.1
# with:
# path: "./habitat-sim"
# - name: Set modality variable
# echo "CI_TEST=$(echo ${{ github.event_name }} == 'pull_request'" >> $GITHUB_ENV
# - name: Build conda Linux packages
# run: |-
# cd habitat-sim/conda-build
# echo "Current event name: $GITHUB_EVENT_NAME"
# echo ${{ env.CI_TEST }}

#pivot on the build type
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
echo "Conda name: $AIHABITAT_CONDA_USERNAME"
else
echo "Conda name: $AIHABITAT_NIGHTLY_CONDA_USERNAME"
fi
# #pivot on the build type
# if [[ ${{ github.event_name }} == 'pull_request' ]]; then
# echo "Conda name: $AIHABITAT_CONDA_USERNAME"
# else
# echo "Conda name: $AIHABITAT_NIGHTLY_CONDA_USERNAME"
# fi

0 comments on commit ac6e70f

Please sign in to comment.