mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-10 05:28:07 -05:00
fix CI (#569)
* fix CI * fix CI * fix CI * fix CI * fix CI * fix CI * fix CI * fix CI
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
version: 2.1
|
||||
|
||||
orbs:
|
||||
python: circleci/python@0.2.1
|
||||
python: circleci/python@1.4.0
|
||||
|
||||
jobs:
|
||||
build_doc:
|
||||
@@ -9,13 +9,13 @@ jobs:
|
||||
- image: circleci/python:3.9
|
||||
steps:
|
||||
- checkout
|
||||
- python/load-cache
|
||||
- python/install-deps
|
||||
- python/save-cache
|
||||
- run: pip install -r requirements.txt
|
||||
- run:
|
||||
command: cd docs;make html
|
||||
name: doc_build
|
||||
command: |
|
||||
python -m venv venv
|
||||
. venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
cd docs;make html
|
||||
- store_artifacts:
|
||||
path: docs/_build/html/
|
||||
destination: html
|
||||
|
||||
6
.github/workflows/Linux_CI.yml
vendored
6
.github/workflows/Linux_CI.yml
vendored
@@ -1,6 +1,10 @@
|
||||
name: Linux_CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
7
.github/workflows/MacOS_CI.yml
vendored
7
.github/workflows/MacOS_CI.yml
vendored
@@ -4,7 +4,12 @@ name: MacOS_CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
4
.github/workflows/codeql.yml
vendored
4
.github/workflows/codeql.yml
vendored
@@ -2,8 +2,8 @@ name: "Code scanning - action"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
schedule:
|
||||
- cron: '0 19 * * 0'
|
||||
|
||||
@@ -10,6 +10,10 @@ environment:
|
||||
matrix:
|
||||
- PYTHON_DIR: C:\Python39-x64
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
init:
|
||||
- "ECHO %PYTHON_DIR%"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user