Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Sep 6, 2024
1 parent 9b75086 commit 10d0844
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,25 @@ jobs:
VORTEX_DEBUG: ${{ vars.VORTEX_DEBUG }}

steps:

- run: |
apt update
apt install sudo ssh -y
- shell: bash
run: 'echo HOME=/root | sudo tee -a $GITHUB_ENV'

- run: |
echo $HOME
ls -al $HOME/.
ls -al /root/.
ls -al /github/home/.
- name: Check out code
uses: actions/checkout@v3



- name: Process codebase to run in CI
run: |
find . -name "docker-compose.yml" -print0 | xargs -0 -I {} sh -c "sed -i -e '/###/d' {} && sed -i -e 's/##//' {}"
Expand All @@ -61,18 +77,6 @@ jobs:
VORTEX_DB_DOWNLOAD_SEMAPHORE=/tmp/download-db-success ./scripts/vortex/download-db.sh
timeout-minutes: 30

- run: |
apt update
apt install sudo ssh -y
- shell: bash
run: 'echo HOME=/home/sf | sudo tee -a $GITHUB_ENV'

- run: |
ls -al /github/home/.
- name: Export DB
run: |
[ ! -f /tmp/download-db-success ] && echo "==> Database download semaphore file is missing. DB export will not proceed." && exit 0
Expand Down

0 comments on commit 10d0844

Please sign in to comment.