Skip to content

Commit

Permalink
Updates the working directory edits the run command
Browse files Browse the repository at this point in the history
  • Loading branch information
anweshadas committed May 9, 2024
1 parent f74eedc commit 6711f4f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/eerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ jobs:
- name: Build the Base Community EE image
working-directory:
run: >-
pwd
run: |
ansible-builder build --tag ghcr.io/anweshadas/community-ee-base:${{ env.BASE_EE_VERSION }}
- name: Find the id of the latest Base EE image
Expand All @@ -97,15 +96,16 @@ jobs:
# Break down to 2 spearate step/ cd ../eercheck

- name: Test the image with eercheck
run: >-
working-directory: eercheck
run: |
pwd
ls -l
# python3 -m venv .venv
# source .venv/bin/activate
# python -m pip install -r requirements.txt
#systemctl start podman.socket --user
#./containertest.py ${{ env.IMAGE_ID }}
#echo "STATUS_CODE=$?">>$GITHUB_ENV
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
systemctl start podman.socket --user
./containertest.py ${{ env.IMAGE_ID }}
echo "STATUS_CODE=$?">>$GITHUB_ENV
- name: Checking the status code
run: |
Expand Down

0 comments on commit 6711f4f

Please sign in to comment.