Kicad diffs - use ssh, new version of Kidiff (#4951)
* switch to ssh and upstream KiCad-Diff * update submo * update submo
This commit is contained in:
parent
c45ff860b6
commit
9546d6a0f6
|
@ -15,23 +15,24 @@ jobs:
|
|||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Install lftp, kicad, and tk bindings
|
||||
- name: Install sshpass, kicad, and tk bindings
|
||||
run: |
|
||||
sudo add-apt-repository ppa:js-reynaud/kicad-5.1
|
||||
sudo add-apt-repository --yes ppa:kicad/kicad-6.0-releases
|
||||
sudo apt-get update
|
||||
sudo apt-get install lftp kicad python3-tk
|
||||
sudo apt-get install sshpass kicad python3-pip python3-tk scour librsvg2-bin
|
||||
pip install python-dateutil pygubu
|
||||
|
||||
- name: Get KiCad-Diff
|
||||
run: git clone https://github.com/chuckwagoncomputing/KiCad-Diff.git
|
||||
run: git clone https://github.com/leoheck/KiCad-Diff.git
|
||||
|
||||
- name: Set FTP variables
|
||||
- name: Set SSH variables
|
||||
env:
|
||||
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
||||
run: |
|
||||
if [ "${{github.event_name}}" = "push" ] && [ "${{github.ref}}" = "refs/heads/master" ]; then
|
||||
echo "::set-env name=RUSEFI_FTP_SERVER::${{secrets.RUSEFI_FTP_SERVER}}";
|
||||
echo "::set-env name=RUSEFI_DOXYGEN_FTP_USER::${{secrets.RUSEFI_DOXYGEN_FTP_USER}}";
|
||||
echo "::set-env name=RUSEFI_DOXYGEN_FTP_PASS::${{secrets.RUSEFI_DOXYGEN_FTP_PASS}}";
|
||||
echo "::set-env name=RUSEFI_SSH_SERVER::${{secrets.RUSEFI_SSH_SERVER}}";
|
||||
echo "::set-env name=RUSEFI_SSH_USER::${{secrets.RUSEFI_SSH_USER}}";
|
||||
echo "::set-env name=RUSEFI_SSH_PASS::${{secrets.RUSEFI_SSH_PASS}}";
|
||||
fi
|
||||
|
||||
- name: Generate diffs
|
||||
|
|
Loading…
Reference in New Issue