Browse Source

update cron config in .drone.yml

test
wangwei2 1 year ago
parent
commit
b052aa923d
1 changed files with 11 additions and 22 deletions
  1. +11
    -22
      .drone.yml

+ 11
- 22
.drone.yml View File

@@ -4,37 +4,26 @@ name: 1
platform:
os: linux
arch: amd64
volumes:
- name: cache
host:
path: /tmp/cache
- name: cache
host:
path: /tmp/cache
steps:
#- name: detection
# image: python:3
# failure: ignore
# commands:
# - echo **detection test**
# - curl 'http://121.40.129.71:40111/openi/projects/droneDetect' -X POST --header 'content-type:application/json;charset=UTF-8' -d '{"currentUser":"wangwei2","repoOwner":"wangwei2","repository":"report-python3","branchName":"test"}'

- name: build
image: python:3
commands:
- echo **start**
- pip install -r requirements.txt

- echo **start**
- pip install -r requirements.txt
- name: test
image: python:3
commands:
- pip install -r requirements.txt
- python run_excel_re.py
- ls -lR test_Report
- cp -r test_Report/* /tmp/cache
- pip install -r requirements.txt
- python run_excel_re.py
- ls -lR test_Report
- cp -r test_Report/* /tmp/cache
volumes:
- name: cache
path: /tmp/cache

- name: cache
path: /tmp/cache
trigger:
branch:
- master


Loading…
Cancel
Save