Skip to content

Commit

Permalink
[integration] - trying to get cesium benchmark working
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLiur committed Jul 19, 2024
1 parent 7e1fe65 commit 385033b
Showing 1 changed file with 54 additions and 54 deletions.
108 changes: 54 additions & 54 deletions .github/workflows/test.integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,60 +17,60 @@ permissions:
packages: write

jobs:
test-integration-ubuntu:
runs-on: "Ubuntu"
timeout-minutes: 1440
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Diff Changes
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
changed:
- "client/**"
- "freighter/py/**"
- "synnax/**"
- "cesium/**"
- "aspen/**"
- "x/**"
- "freighter/**"
- ".github/workflows/test.integration.yaml"
- name: Install Dependencies
if: steps.filter.outputs.changed == 'true'
run: pnpm i --no-frozen-lockfile

- name: Build client
if: steps.filter.outputs.changed == 'true'
run: pnpm build:client

- name: Poetry install
if: steps.filter.outputs.changed == 'true'
run: poetry install
working-directory: ./integration/py

- name: Mini Test
if: steps.filter.outputs.changed == 'true'
run: ./run-integration.sh tests/ws-d-r-mini.json
working-directory: ./integration

- name: Delete Test
if: steps.filter.outputs.changed == 'true'
run: ./run-integration.sh tests/delete-test.json
working-directory: ./integration

- name: Load test
if: steps.filter.outputs.changed == 'true'
run: ./run-integration.sh tests/ws-d-r.json
working-directory: ./integration

- name: Benchmark test
if: ${{ !cancelled() }} && steps.filter.outputs.changed == 'true'
run: ./run-integration.sh tests/benchmark-debug.json
working-directory: ./integration
# test-integration-ubuntu:
# runs-on: "Ubuntu"
# timeout-minutes: 1440
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3
#
# - name: Diff Changes
# uses: dorny/paths-filter@v3
# id: filter
# with:
# filters: |
# changed:
# - "client/**"
# - "freighter/py/**"
# - "synnax/**"
# - "cesium/**"
# - "aspen/**"
# - "x/**"
# - "freighter/**"
# - ".github/workflows/test.integration.yaml"
#
# - name: Install Dependencies
# if: steps.filter.outputs.changed == 'true'
# run: pnpm i --no-frozen-lockfile
#
# - name: Build client
# if: steps.filter.outputs.changed == 'true'
# run: pnpm build:client
#
# - name: Poetry install
# if: steps.filter.outputs.changed == 'true'
# run: poetry install
# working-directory: ./integration/py
#
# - name: Mini Test
# if: steps.filter.outputs.changed == 'true'
# run: ./run-integration.sh tests/ws-d-r-mini.json
# working-directory: ./integration
#
# - name: Delete Test
# if: steps.filter.outputs.changed == 'true'
# run: ./run-integration.sh tests/delete-test.json
# working-directory: ./integration
#
# - name: Load test
# if: steps.filter.outputs.changed == 'true'
# run: ./run-integration.sh tests/ws-d-r.json
# working-directory: ./integration
#
# - name: Benchmark test
# if: ${{ !cancelled() }} && steps.filter.outputs.changed == 'true'
# run: ./run-integration.sh tests/benchmark-debug.json
# working-directory: ./integration

test-benchmark-cesium:
runs-on: "Ubuntu"
Expand Down

0 comments on commit 385033b

Please sign in to comment.