Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/test-hawk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Build hawk-node image (CI)
- name: Build hawk-node image
run: |
docker build -t hawk-node -f .github/docker/hawk-node.Dockerfile .
- name: Build hawk-examiner image
run: |
docker build -t hawk-examiner -f e2e_test/Dockerfile e2e_test
- name: Start cluster nodes in containers
run: |
docker run -d --privileged -h node1 --name node1 --add-host node1:${IP_NODE1} --add-host node2:${IP_NODE2} hawk-node
Expand Down Expand Up @@ -52,4 +55,4 @@ jobs:
docker exec node1 crm conf property stonith-enabled=true
docker exec node1 crm conf property have-watchdog=true
- name: Run the functional test
run: docker run ghcr.io/aleksei-burlakov/hawk-examiner -H ${IP_NODE1} -S ${IP_NODE2} -s linux --xvfb
run: docker run hawk-examiner -H ${IP_NODE1} -S ${IP_NODE2} -s linux --xvfb