Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to KiCAD 8. #180

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/kibot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
DRC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
image: setsoft/kicad_auto:ki8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for DRC
Expand All @@ -38,9 +38,9 @@ jobs:
ERC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki7
image: setsoft/kicad_auto:ki8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Run KiBot for ERC
Expand All @@ -50,9 +50,9 @@ jobs:
runs-on: ubuntu-latest
needs: [ERC, DRC]
container:
image: setsoft/kicad_auto:ki7
image: setsoft/kicad_auto:ki8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- name: Get Branch Name
Expand All @@ -64,7 +64,7 @@ jobs:
run: |
kibot -c Kicad/docs.kibot.yml -e ${{env.schema}} -b ${{env.board}} -d ${{env.dir}} -s run_erc,run_drc -v
- name: Upload KiBot Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{success()}}
with:
name: Build-Outputs
Expand Down
Loading
Loading