Skip to content

Commit

Permalink
feat: update tf modules
Browse files Browse the repository at this point in the history
Signed-off-by: Rudra Gupta <[email protected]>
  • Loading branch information
grudra7714 committed Sep 26, 2024
1 parent 0cfc012 commit 7522c83
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/check-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,14 @@ jobs:
# Assuming the binary is named 'privateer'. Adjust if it's named differently.
./privateer help
- name: 'Tar files'
run: tar -cvf test_harness.tar privateer/

- name: Archive release artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: privateer/privateer
path: test_harness.tar

build-azure-blob-storage:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -78,12 +81,14 @@ jobs:
make release
ls
- name: 'Tar files'
run: tar -cvf azure_blob.tar aid-azure-blob-storage/

- name: Archive release artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: raid-azure-blob-storage/ABS

path: azure_blob.tar

terraform:
if: github.repository == 'octo-org/octo-repo-prod'
Expand Down Expand Up @@ -154,22 +159,18 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: release-artifacts
path: raid-azure-blob-storage/ABS
path: test_harness.tar
- uses: actions/download-artifact@v3
with:
name: release-artifacts
path: privateer/privateer
path: azure_blob.tar
- name: RUN ls
run: |
cd privateer/privateer
ls -al
./privateer help
cd ..
cd raid-azure-blob-storage
ls -al
cd ..
- name: RUN sally command
run: |
./privateer/privateer sally ./raid-azure-blob-storage/ABS -c config.yml
tar -xvf test_harness.tar
tar -xvf azure_blob.tar
ls -al
# - name: RUN sally command
# run: |
# ./privateer/privateer sally ./raid-azure-blob-storage/ABS -c config.yml

0 comments on commit 7522c83

Please sign in to comment.