stack-orchestrator/.gitea/workflows/test.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2023-04-20 22:21:26 +00:00
name: Integration Test
2023-04-06 13:19:08 +00:00
on:
pull_request:
branches: '*'
push:
2023-04-20 22:21:26 +00:00
branches:
- main
- ci-test
# Needed until we can incorporate docker startup into the executor container
env:
DOCKER_HOST: unix:///var/run/dind.sock
2023-04-06 13:19:08 +00:00
jobs:
test:
2023-04-06 13:28:13 +00:00
name: "Run basic test suite"
2023-04-06 13:19:08 +00:00
runs-on: ubuntu-latest
steps:
2023-04-06 19:20:22 +00:00
- name: "Clone project repository"
2023-04-06 13:19:08 +00:00
uses: actions/checkout@v3
2023-04-06 19:20:22 +00:00
- name: "Install Python"
uses: cerc-io/setup-python@v4
with:
python-version: '3.8'
2023-04-06 19:36:58 +00:00
- name: "Print Python version"
2023-04-06 19:20:22 +00:00
run: python3 --version
- name: "Install shiv"
run: pip install shiv
2023-04-10 18:17:54 +00:00
- name: "Generate build version file"
run: ./scripts/create_build_tag_file.sh
2023-04-06 19:24:17 +00:00
- name: "Build local shiv package"
2023-04-06 19:20:22 +00:00
run: ./scripts/build_shiv_package.sh
2023-04-20 22:21:26 +00:00
- name: Start dockerd # Also needed until we can incorporate into the executor
run: |
dockerd -H $DOCKER_HOST --userland-proxy=false &
sleep 5
2023-04-06 19:32:56 +00:00
- name: "Run smoke tests"
2023-04-06 19:35:16 +00:00
run: ./tests/smoke-test/run-smoke-test.sh