Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KalanaDananjaya authored May 6, 2024
1 parent 3438558 commit 9a57fd4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/verify-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,20 @@ jobs:
export WORKER_NAME=shared_volume_worker1_1
" >> ${{ github.workspace }}/../jalien-setup/bash/config/config.sh
# For test image setup
- name: Run jalien-setup bash scripts
if: ${{ github.event.inputs.image_tag }} == 'test'
run: |
cd ${{ github.workspace }}/../jalien-setup/bash
./start.sh --shared --${{ github.event.inputs.image_tag }}
./start.sh --shared --test
# For production image setup
- name: Run jalien-setup bash scripts
if: ${{ github.event.inputs.image_tag }} == 'latest'
run: |
cd ${{ github.workspace }}/../jalien-setup/bash
./start.sh --shared --latest
- name: Clone test-suite
run: |
cd ${{ github.workspace }}
Expand All @@ -79,7 +89,7 @@ jobs:
echo "
export SHARED_VOLUME_PATH=$(pwd)/SHARED_VOLUME
export JALIEN_SETUP_PATH=$(pwd)/jalien
export JALIEN_SETUP_PATH=$(pwd)/jalien-setup
export JALIEN_PATH=$(pwd)/jalien-setup
export CONTAINER_NAME_CE=shared_volume_JCentral-dev-CE_1
export CONTAINER_NAME_CENTRAL=shared_volume_JCentral-dev_1
export CONTAINER_NAME_SCHEDD=shared_volume_schedd_1
Expand All @@ -93,12 +103,14 @@ jobs:
" >> ${{ github.workspace }}/../test-suite/.env
cat ${{ github.workspace }}/../test-suite/.env
# For test image setup
- name: Run test-suite for container specific tests
if: ${{ github.event.inputs.image_tag }} == 'test'
run: |
cd ${{ github.workspace }}/../test-suite
./index.sh --container-only --test
# For production image setup
- name: Run test-suite for all tests
if: ${{ github.event.inputs.image_tag }} == 'latest'
run: |
Expand Down

0 comments on commit 9a57fd4

Please sign in to comment.