Skip to content

Commit

Permalink
Merge pull request #8206 from OpenMined/rasswanth/fix_cd_pipeline
Browse files Browse the repository at this point in the history
Switched Runners in CD Pipeline to Self-Hosted Runners
  • Loading branch information
rasswanth-s authored Nov 1, 2023
2 parents 4257bfc + b015950 commit 8fbc8f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-syft-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
check-last-run:
runs-on: om-ci-16vcpu-ubuntu2204
runs-on: [self-hosted, Linux]

outputs:
same-commit: ${{ steps.cache.outputs.cache-hit }}
Expand All @@ -41,7 +41,7 @@ jobs:
needs: check-last-run
if: needs.check-last-run.outputs.same-commit != 'true'

runs-on: om-ci-16vcpu-ubuntu2204
runs-on: [self-hosted, Linux]

steps:
- name: Permission to home directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
deploy-syft:
needs: [call-pr-tests-linting, call-pr-tests-syft, call-pr-tests-stack]
if: always() && (needs.call-pr-tests-linting.result == 'success' && needs.call-pr-tests-syft.result == 'success' && needs.call-pr-tests-stack.result == 'success' || github.event.inputs.skip_tests == 'true')
runs-on: om-ci-16vcpu-ubuntu2204
runs-on: [self-hosted, Linux]
permissions:
contents: write # For tag and release notes.
steps:
Expand Down

0 comments on commit 8fbc8f9

Please sign in to comment.