You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
51 lines
1.0 KiB
1 year ago
|
name: Execute Scripts
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
paths-ignore:
|
||
|
- "docs/**"
|
||
|
- "README.md"
|
||
|
- "README_zh-CN.md"
|
||
|
- "CONTRIBUTING.md"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
paths-ignore:
|
||
|
- "README.md"
|
||
|
- "README_zh-CN.md"
|
||
|
- "CONTRIBUTING.md"
|
||
|
- "docs/**"
|
||
|
|
||
|
jobs:
|
||
|
execute-scripts:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Start Docker Compose
|
||
|
run: docker-compose up -d
|
||
|
|
||
|
- name: Stop all services
|
||
|
run: |
|
||
|
chmod +x ./scripts/stop_all.sh
|
||
|
./scripts/stop_all.sh
|
||
|
|
||
|
- name: Build all services
|
||
|
run: |
|
||
|
chmod +x ./scripts/build_all_service.sh
|
||
|
./scripts/build_all_service.sh
|
||
|
|
||
|
- name: Start all services
|
||
|
run: |
|
||
|
chmod +x ./scripts/start_all.sh
|
||
|
./scripts/start_all.sh
|
||
|
|
||
|
- name: Check all services
|
||
|
run: |
|
||
|
chmod +x ./scripts/check_all.sh
|
||
|
./scripts/check_all.sh
|