Skip to content

Commit

Permalink
feat: add install step
Browse files Browse the repository at this point in the history
Signed-off-by: Rudra Gupta <[email protected]>
  • Loading branch information
grudra7714 committed Sep 27, 2024
1 parent f5c2032 commit d2f7a4d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,23 @@ permissions:
contents: read

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Download and run Privateer install script
run: |
curl -sSL https://raw.githubusercontent.com/privateerproj/privateer/03ced90caae9f3c9203eb7f82f2c46ccf2ff15fc/install.sh | bash
- name: Verify Privateer installation
run: |
privateer version
- name: Run Privateer help
run: |
privateer help
build-privateer:
if: github.repository == 'octo-org/octo-repo-prod'
runs-on: ubuntu-latest
steps:
- name: Checkout Privateer repository
Expand Down Expand Up @@ -54,6 +70,7 @@ jobs:
path: privateer/test_harness.tar

build-azure-blob-storage:
if: github.repository == 'octo-org/octo-repo-prod'
runs-on: ubuntu-latest
steps:
- name: Checkout Azure Blob Storage repository
Expand Down Expand Up @@ -157,6 +174,7 @@ jobs:
working-directory: examples/basic

check-compliance:
if: github.repository == 'octo-org/octo-repo-prod'
needs: [build-privateer, build-azure-blob-storage]
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit d2f7a4d

Please sign in to comment.