Hackathon Test #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: v2 App Unit Test | |
on: [pull_request] | |
jobs: | |
v2-app-unit-test: | |
name: "V2 App Unit Test" | |
runs-on: "ubuntu-latest" | |
env: | |
SUMO_APPS_V2_REPO_PATH: ${{ github.workspace }} | |
TARGET_BRANCH: "origin/${{ github.event.pull_request.base.ref }}" | |
SOURCE_BRANCH: "origin/${{ github.event.pull_request.head.ref }}" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install -U pip wheel setuptools | |
- name: "Install sumoappsuite tool" | |
run: | | |
pip3 install $GITHUB_WORKSPACE/scripts/sumologic_appdevutils*.whl | |
- name: "Generate SCR File" | |
run: | | |
sumoappsuite generate-scr-file-v2-app && cat scr_app_list.yaml | yq ".apps[0].relativeFolderPath" >> appPath | |
- name: "Run Sumo Logic App Tests" | |
run: | | |
sumoappsuite run-all-app-tests-v2 -f scr_app_list.yaml -e test_tfApp_installable,test_is_deployable,test_sumo_query,test_threatintel_query,test_update_v2_app | |
- name: Set up AWS CLI | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: "us-west-2" | |
- name: List objects in S3 bucket #Testing aws cli | |
run: aws s3 ls | |
- name: "Run Sumo Logic App Review tool" #sumoappsuite review-v2-app -f "{SUMO_APPS_V2_REPO_PATH}{appPath}" | |
run: | | |
echo "{SUMO_APPS_V2_REPO_PATH}{appPath}" | |
# - name: Upload Excel Sheet as PR Comment | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: excel-sheet | |
# path: appreviewoutput.xlsx | |
# - name: Comment on PR with Excel Sheet | |
# uses: actions/github-script@v4 | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# script: | | |
# const fs = require('fs'); | |
# const data = fs.readFileSync('appreviewoutput.xlsx', 'utf8'); | |
# github.issues.createComment({ | |
# issue_number: context.issue.number, | |
# owner: context.repo.owner, | |
# repo: context.repo.repo, | |
# body: 'Excel Sheet generated from the command:\n```' + data + '```' | |
# }) |