-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: separate workflow to four part (#141)
* fix: separate workflow to four part * chore: rename job name
- Loading branch information
1 parent
9f024d0
commit a046607
Showing
9 changed files
with
1,550 additions
and
983 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Monthly company data Script Execution 2 | ||
|
||
on: | ||
schedule: | ||
# 每个月2号的00:00 UTC运行脚本 | ||
- cron: '0 0 2 * *' | ||
workflow_dispatch: # 也允许手动触发工作流 | ||
|
||
jobs: | ||
run_python_script: | ||
runs-on: ubuntu-latest # 使用 GitHub 提供的 Ubuntu 环境 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 # 检出仓库代码 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' # 设置 Python 版本 | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Start ClickHouse service | ||
run: | | ||
docker run -d --name clickhouse-server --ulimit nofile=262144:262144 -p 9000:9000 clickhouse/clickhouse-server | ||
sleep 30 | ||
- name: List running containers | ||
run: docker ps -a | ||
|
||
- name: Check ClickHouse logs | ||
run: docker logs clickhouse-server | ||
|
||
- name: Test ClickHouse query | ||
run: | | ||
docker exec -i clickhouse-server clickhouse-client --query "SELECT 1" | ||
- name: Run the Python script | ||
run: | | ||
cd dashboard/company/scripts | ||
python workflow_2.py | ||
env: | ||
DB_HOST: ${{ secrets.DB_HOST }} | ||
DB_USER: ${{ secrets.DB_USER }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DASHBOARDS_DB_HOST: ${{ secrets.DASHBOARD_DB_HOST }} | ||
DASHBOARDS_DB_USER: ${{ secrets.DASHBOARD_DB_USER }} | ||
DASHBOARDS_DB_PASSWORD: ${{ secrets.DASHBOARD_DB_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Monthly company data Script Execution 3 | ||
|
||
on: | ||
schedule: | ||
# 每个月2号的00:00 UTC运行脚本 | ||
- cron: '0 0 2 * *' | ||
workflow_dispatch: # 也允许手动触发工作流 | ||
|
||
jobs: | ||
run_python_script: | ||
runs-on: ubuntu-latest # 使用 GitHub 提供的 Ubuntu 环境 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 # 检出仓库代码 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' # 设置 Python 版本 | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Start ClickHouse service | ||
run: | | ||
docker run -d --name clickhouse-server --ulimit nofile=262144:262144 -p 9000:9000 clickhouse/clickhouse-server | ||
sleep 30 | ||
- name: List running containers | ||
run: docker ps -a | ||
|
||
- name: Check ClickHouse logs | ||
run: docker logs clickhouse-server | ||
|
||
- name: Test ClickHouse query | ||
run: | | ||
docker exec -i clickhouse-server clickhouse-client --query "SELECT 1" | ||
- name: Run the Python script | ||
run: | | ||
cd dashboard/company/scripts | ||
python workflow_3.py | ||
env: | ||
DB_HOST: ${{ secrets.DB_HOST }} | ||
DB_USER: ${{ secrets.DB_USER }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DASHBOARDS_DB_HOST: ${{ secrets.DASHBOARD_DB_HOST }} | ||
DASHBOARDS_DB_USER: ${{ secrets.DASHBOARD_DB_USER }} | ||
DASHBOARDS_DB_PASSWORD: ${{ secrets.DASHBOARD_DB_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Monthly company data Script Execution 4 | ||
|
||
on: | ||
schedule: | ||
# 每个月2号的00:00 UTC运行脚本 | ||
- cron: '0 0 2 * *' | ||
workflow_dispatch: # 也允许手动触发工作流 | ||
|
||
jobs: | ||
run_python_script: | ||
runs-on: ubuntu-latest # 使用 GitHub 提供的 Ubuntu 环境 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 # 检出仓库代码 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' # 设置 Python 版本 | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Start ClickHouse service | ||
run: | | ||
docker run -d --name clickhouse-server --ulimit nofile=262144:262144 -p 9000:9000 clickhouse/clickhouse-server | ||
sleep 30 | ||
- name: List running containers | ||
run: docker ps -a | ||
|
||
- name: Check ClickHouse logs | ||
run: docker logs clickhouse-server | ||
|
||
- name: Test ClickHouse query | ||
run: | | ||
docker exec -i clickhouse-server clickhouse-client --query "SELECT 1" | ||
- name: Run the Python script | ||
run: | | ||
cd dashboard/company/scripts | ||
python workflow_4.py | ||
env: | ||
DB_HOST: ${{ secrets.DB_HOST }} | ||
DB_USER: ${{ secrets.DB_USER }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DASHBOARDS_DB_HOST: ${{ secrets.DASHBOARD_DB_HOST }} | ||
DASHBOARDS_DB_USER: ${{ secrets.DASHBOARD_DB_USER }} | ||
DASHBOARDS_DB_PASSWORD: ${{ secrets.DASHBOARD_DB_PASSWORD }} |
Oops, something went wrong.