Skip to content

Commit

Permalink
WIP: run docker-compose in background
Browse files Browse the repository at this point in the history
  Otherwise CI does not run next step
  • Loading branch information
taratatach committed Jul 15, 2024
1 parent 76a1425 commit a9b23d7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Setup Docker
uses: douglascamata/setup-docker-macos-action@v1-alpha
- name: Setup cozy-stack
run: docker-compose up
run: docker-compose up &
#- name: Setup CouchDB
# id: setup-couchdb
# uses: ./.github/actions/setup-couchdb
Expand All @@ -115,7 +115,12 @@ jobs:
- name: Start Xvfb
run: sudo Xvfb :99 -ac -screen 0 1024x768x8 &
- name: Setup test config
run: yarn test:setup
run: |
until yarn test:setup
do
echo "Waiting for cozy-stack to be running..."
sleep 1
done
- name: Unit tests
env:
COZY_DESKTOP_FS: ${{ matrix.fs }}
Expand Down

0 comments on commit a9b23d7

Please sign in to comment.