-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
739d5d9
commit ee6c9ed
Showing
2 changed files
with
31 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,6 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
pip install --no-compile kibot | ||
wget https://github.com/INTI-CMNB/InteractiveHtmlBom/releases/download/v2.3.4-2/interactivehtmlbom.inti-cmnb_2.3.4-2_all.deb | ||
sudo dpkg -i interactivehtmlbom.inti-cmnb_2.3.4-2_all.deb | ||
pip install pcb-tools image | ||
sudo apt install xvfb recordmydesktop xdotool libmagickwand-dev librsvg2-bin imagemagick poppler-utils | ||
|
@@ -80,37 +78,3 @@ jobs: | |
name: design-rule-check | ||
path: schematics/PSLab-drc.txt | ||
|
||
- name: Setup board diff images | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions" | ||
python3 scripts/pslab_gerber_generator.py | ||
git clone --quiet --branch=diff-img https://$GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY diff-img > /dev/null | ||
cd diff-img | ||
convert -colorspace gray front-layer.png old-front.png | ||
convert -colorspace gray bottom-layer.png old-bottom.png | ||
convert -colorspace gray ground-layer.png old-ground.png | ||
convert -colorspace gray power-layer.png old-power.png | ||
mv ../output/Images/* . | ||
convert -colorspace gray front-layer.png new-front.png | ||
convert -colorspace gray bottom-layer.png new-bottom.png | ||
convert -colorspace gray ground-layer.png new-ground.png | ||
convert -colorspace gray power-layer.png new-power.png | ||
composite -stereo 0 old-front.png new-front.png diff-front.png | ||
composite -stereo 0 old-bottom.png new-bottom.png diff-bottom.png | ||
composite -stereo 0 old-ground.png new-ground.png diff-ground.png | ||
composite -stereo 0 old-power.png new-power.png diff-power.png | ||
mv PSLab.pdf old-PSLab.pdf | ||
cp ../docs/schematics/PSLab.pdf . | ||
pdftoppm old-PSLab.pdf old-PSLab -png -rx 300 -ry 300 | ||
pdftoppm PSLab.pdf new-PSLab -png -rx 300 -ry 300 | ||
convert -colorspace gray old-PSLab-1.png old-PSLab.png | ||
convert -colorspace gray new-PSLab-1.png new-PSLab.png | ||
composite -stereo 0 old-PSLab.png new-PSLab.png diff-schematic.png | ||
rm -rf old-* new-* | ||
git checkout --orphan temporary | ||
git add . | ||
git commit -m "chore: updating board diff images" | ||
git branch -D diff-img | ||
git branch -m diff-img | ||
git push origin diff-img -f --quiet > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters