Skip to content

Commit

Permalink
ci: revert skip of longtests
Browse files Browse the repository at this point in the history
Longtests were set to skip to avoid a circular problem with the ci cache
update.  The cache has now updated so the temporary block can be removed.

Signed-off-by: Terri Oda <[email protected]>
  • Loading branch information
terriko committed Jan 23, 2025
1 parent acbc684 commit 8b2affe
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,21 +209,17 @@ jobs:
python-version: '3.10'
cache: 'pip'

# - name: "Skip tests if this is an automated sbom job"
# env:
# COMMIT_VAR: ${{ startsWith(github.head_ref, 'chore-sbom-py') && github.event.pull_request.user.login == 'github-actions[bot]' }}
# run: |
# if ${COMMIT_VAR} == true; then
# echo "sbom=true" >> $GITHUB_ENV
# echo "sbom set to true"
# else
# echo "sbom=false" >> $GITHUB_ENV
# echo "sbom set to false"
# fi
#
- name: "FIXME: Skip tests so we can break out of failure loop"
- name: "Skip tests if this is an automated sbom job"
env:
COMMIT_VAR: ${{ startsWith(github.head_ref, 'chore-sbom-py') && github.event.pull_request.user.login == 'github-actions[bot]' }}
run: |
if ${COMMIT_VAR} == true; then
echo "sbom=true" >> $GITHUB_ENV
echo "sbom set to true"
else
echo "sbom=false" >> $GITHUB_ENV
echo "sbom set to false"
fi
- name: Get date
id: get-date
Expand Down

0 comments on commit 8b2affe

Please sign in to comment.