Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/pre-merge-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
repository: 'tigergraph/cloud-universe'
token: ${{ secrets.CICD_GITHUB_TOKEN }}
path: cloud-universe
ref: main
ref: TCE-6633

- name: Run API test
run: |
cd cloud-universe
bash tests/run_cloud_api.sh solution_test
# - name: Run API test
# run: |
# cd cloud-universe
# bash tests/run_cloud_api.sh solution_test

- name: configure aws credentials
if: always()
Expand Down Expand Up @@ -62,16 +62,16 @@ jobs:
touch tests/junit/test-results.xml
fi

- name: Upload API test results
if: always()
uses: actions/upload-artifact@v4
with:
name: cloud-test-api
path: |
cloud-universe/tests/environment.properties
cloud-universe/tests/prepare_env_log*
cloud-universe/tests/junit/test-results*.xml
cloud-universe/tests/latest_logs/
cloud-universe/tests/alluredir/
cloud-universe/tests/data/log/*.log
cloud-universe/tests/log/
# - name: Upload API test results
# if: always()
# uses: actions/upload-artifact@v4
# with:
# name: cloud-test-api
# path: |
# cloud-universe/tests/environment.properties
# cloud-universe/tests/prepare_env_log*
# cloud-universe/tests/junit/test-results*.xml
# cloud-universe/tests/latest_logs/
# cloud-universe/tests/alluredir/
# cloud-universe/tests/data/log/*.log
# cloud-universe/tests/log/
14 changes: 11 additions & 3 deletions .github/workflows/upload-solution-kits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ on:
branches:
- main
- dev
- pcr-test



workflow_dispatch:
inputs:
version_dict:
type: string
description: build version dict for solutions e.g.{"4.1.3":"4.1.3-02130900"}
description: build version dict for solutions e.g.{"4.1.3":"4.1.3-05140332"}
required: true


env:
AWS_S3_BUCKET: tgcloud-test
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
Expand All @@ -24,7 +29,7 @@ permissions:
jobs:
upload-solutions-kits:
name: Upload Solution Kits
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -64,13 +69,16 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: test
run: |
tar --version
- name: Clone the cloud-universe repo
uses: actions/checkout@v4
with:
repository: 'tigergraph/cloud-universe'
token: ${{ secrets.CICD_GITHUB_TOKEN }}
path: cloud-universe
ref: main
ref: TCE-6697

- name: Set up Python 3.10
uses: actions/setup-python@v5
Expand Down
Loading