Skip to content

Commit

Permalink
Fix docker compose failures (#1439)
Browse files Browse the repository at this point in the history
* fix docker compose failures

Signed-off-by: Paul S. Schweigert <[email protected]>

* restore compose test

Signed-off-by: Paul S. Schweigert <[email protected]>

---------

Signed-off-by: Paul S. Schweigert <[email protected]>
  • Loading branch information
psschwei authored Aug 5, 2024
1 parent e41a1b1 commit aae5fd8
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Docker notebook tests

on:
pull_request:
branches: [ main ]

jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- name: Build the function
run: docker build -t test_function:latest --build-arg TARGETARCH="amd64" -f ./tests/basic/function/Sample-Docker ./tests/basic
- name: Build the containers
run: docker compose -f docker-compose-dev.yaml build
- name: Run the jupyter profile
run: docker compose -f docker-compose-dev.yaml up -d
- name: Give containers time to initialize
shell: bash
run: sleep 90
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: install dependencies
shell: bash
run: pip install client/
- name: Run basic tests
shell: bash
run: |
cd tests/basic
for f in *.py; do echo "$f" && python "$f" &>> basic.log; done
done=$(cat basic.log | grep -c "DONE")
if [[ $done == 4 ]]
then
echo "OK"
exit 0
else
echo "FAILED: One or more programs failed during execution"
cat basic.log
exit 1
fi
done=$(cat basic.log | grep -c "Completed running pattern")
if [[ $done == 2 ]]
then
echo "OK"
exit 0
else
echo "FAILED: One or more programs failed during execution"
cat basic.log
exit 1
fi
cd -
- name: Run experimental tests
shell: bash
run: |
cd tests/experimental
for f in *.py; do echo "$f" && python "$f" &>> experimental.log; done
done=$(cat experimental.log | grep -c "DONE")
if [[ $done == 6 ]]
then
echo "OK"
exit 0
else
echo "not OK"
cat experimental.log
exit 1
fi
cd -
- name: Dump logs on failure
if: ${{ failure() }}
run: |
docker compose logs gateway
1 change: 1 addition & 0 deletions docker-compose-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# compose config for running images based on local files
services:
ray-head:
user: "0"
container_name: ray-head
build:
context: ./
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# compose config on latest release builds
services:
ray-head:
user: "0"
container_name: ray-head
image: icr.io/quantum-public/qiskit-serverless/ray-node:${VERSION:-0.14.2}-py310
entrypoint: [
Expand Down

0 comments on commit aae5fd8

Please sign in to comment.