diff --git a/.workflow/branch-pipeline.yml b/.workflow/branch-pipeline.yml deleted file mode 100644 index 5f45c174..00000000 --- a/.workflow/branch-pipeline.yml +++ /dev/null @@ -1,52 +0,0 @@ -version: '1.0' -name: branch-pipeline -displayName: BranchPipeline -stages: - - stage: - name: compile - displayName: 编译 - steps: - - step: build@python - name: build_python - displayName: Python 构建 - pythonVersion: '3.9' - # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 - artifacts: - # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 - - name: BUILD_ARTIFACT - # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 - path: - - ./ - commands: - - python3 -m pip install --upgrade pip - - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple - - pip3 install -r requirements.txt - - python3 ./main.py - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - # 上游构建任务定义的产物名,默认BUILD_ARTIFACT - dependArtifact: BUILD_ARTIFACT - # 上传到制品库时的制品命名,默认output - artifactName: output - dependsOn: build_python - - stage: - name: release - displayName: 发布 - steps: - - step: publish@release_artifacts - name: publish_release_artifacts - displayName: '发布' - # 上游上传制品任务的产出 - dependArtifact: output - # 发布制品版本号 - version: '1.0.0.0' - # 是否开启版本号自增,默认开启 - autoIncrement: true -triggers: - push: - branches: - exclude: - - master - include: - - .* diff --git a/.workflow/master-pipeline.yml b/.workflow/master-pipeline.yml deleted file mode 100644 index 69cf0367..00000000 --- a/.workflow/master-pipeline.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: '1.0' -name: master-pipeline -displayName: MasterPipeline -stages: - - stage: - name: compile - displayName: 编译 - steps: - - step: build@python - name: build_python - displayName: Python 构建 - pythonVersion: '3.9' - # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 - artifacts: - # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 - - name: BUILD_ARTIFACT - # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 - path: - - ./ - commands: - - python3 -m pip install --upgrade pip - - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple - - pip3 install -r requirements.txt - - python3 ./main.py - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - # 上游构建任务定义的产物名,默认BUILD_ARTIFACT - dependArtifact: BUILD_ARTIFACT - # 上传到制品库时的制品命名,默认output - artifactName: output - dependsOn: build_python - - stage: - name: release - displayName: 发布 - steps: - - step: publish@release_artifacts - name: publish_release_artifacts - displayName: '发布' - # 上游上传制品任务的产出 - dependArtifact: output - # 发布制品版本号 - version: '1.0.0.0' - # 是否开启版本号自增,默认开启 - autoIncrement: true -triggers: - push: - branches: - include: - - master \ No newline at end of file diff --git a/.workflow/pipeline-20240113.yml b/.workflow/pipeline-20240113.yml deleted file mode 100644 index 9ea8f4a9..00000000 --- a/.workflow/pipeline-20240113.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: '1.0' -name: pipeline-20240113 -displayName: pipeline-20240113 -triggers: - trigger: auto - push: - tags: - prefix: - - v -stages: - - name: stage-31655d4b - displayName: 未命名 - strategy: naturally - trigger: auto - executor: [] - steps: - - step: build@python - name: build_python - displayName: Python 构建 - pythonVersion: '3.9' - commands: - - pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple - - '# 可以使用pip下载依赖' - - '# pip install --user -r requirements.txt' - - pip install pyinstaller - - python -V - - python -c "import time;time.sleep(60*5)" - - pip install pywxdump - - python tests/build_exe.py - - cat dist/pywxdump.spec - - pyinstaller --clean --distpath=dist dist/pywxdump.spec - - ' ls -l dist' - artifacts: - - name: BUILD_ARTIFACT - path: - - ./ - caches: [] - notify: [] - strategy: - retry: '0' diff --git a/.workflow/pr-pipeline.yml b/.workflow/pr-pipeline.yml deleted file mode 100644 index e61e401c..00000000 --- a/.workflow/pr-pipeline.yml +++ /dev/null @@ -1,37 +0,0 @@ -version: '1.0' -name: pr-pipeline -displayName: PRPipeline -stages: - - stage: - name: compile - displayName: 编译 - steps: - - step: build@python - name: build_python - displayName: Python 构建 - pythonVersion: '3.9' - # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 - artifacts: - # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 - - name: BUILD_ARTIFACT - # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 - path: - - ./ - commands: - - python3 -m pip install --upgrade pip - - pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple - - pip3 install -r requirements.txt - - python3 ./main.py - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - # 上游构建任务定义的产物名,默认BUILD_ARTIFACT - dependArtifact: BUILD_ARTIFACT - # 上传到制品库时的制品命名,默认output - artifactName: output - dependsOn: build_python -triggers: - pr: - branches: - include: - - master