Skip to content

Commit

Permalink
[CI/CD][Added][KiCad 8] Files for the GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Mar 26, 2024
1 parent 60dad31 commit 425d39c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile_dk8
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ghcr.io/inti-cmnb/kicad8_auto_full:dev
LABEL AUTHOR Salvador E. Tropea <[email protected]>
LABEL Description="Export various files from KiCad projects (KiCad 8 + development)"

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

WORKDIR /mnt

ENTRYPOINT [ "/entrypoint.sh" ]
10 changes: 10 additions & 0 deletions Dockerfile_k8
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ghcr.io/inti-cmnb/kicad8_auto_full:latest
LABEL AUTHOR Salvador E. Tropea <[email protected]>
LABEL Description="Export various files from KiCad projects (KiCad 8)"

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

WORKDIR /mnt

ENTRYPOINT [ "/entrypoint.sh" ]
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,16 @@ update_gha:
git push
git tag -f -a v2_k7 -m "GitHub Action v2 for KiCad 7"
git push origin -f --tags
cp Dockerfile_dk8 Dockerfile
git commit -m "[CI/CD] Updating Github Action v2 for KiCad 8 development" Dockerfile
git push
git tag -f -a v2_dk8 -m "GitHub Action v2 for KiCad 8 (development)"
git push origin -f --tags
cp Dockerfile_k8 Dockerfile
git commit -m "[CI/CD] Updating Github Action v2 for KiCad 8 latest" Dockerfile
git push
git tag -f -a v2_k8 -m "GitHub Action v2 for KiCad 8"
git push origin -f --tags


.PHONY: deb deb_clean lint test test_local gen_ref doc py_build pypi_upload py_clean

0 comments on commit 425d39c

Please sign in to comment.