Merge pull request #996 from revarbat/revarbat_dev

FUSE fix for github action VMs.
This commit is contained in:
Revar Desmera 2022-11-30 20:51:16 -08:00 committed by GitHub
commit d50aba88a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 8 deletions

View file

@ -17,8 +17,8 @@ jobs:
- name: Apt Update - name: Apt Update
run: sudo apt update run: sudo apt update
- name: Install Python dev - name: Install Required Libraries
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2
- name: Install OpenSCAD-DocsGen package. - name: Install OpenSCAD-DocsGen package.
run: sudo pip3 install openscad-docsgen run: sudo pip3 install openscad-docsgen

View file

@ -17,8 +17,8 @@ jobs:
- name: Apt Update - name: Apt Update
run: sudo apt update run: sudo apt update
- name: Install Python dev - name: Install Required Libraries
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2
- name: Install OpenSCAD-DocsGen package. - name: Install OpenSCAD-DocsGen package.
run: sudo pip3 install openscad-docsgen run: sudo pip3 install openscad-docsgen

View file

@ -8,6 +8,9 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Required Libraries
run: sudo apt-get install libfuse2
- name: Install OpenSCAD - name: Install OpenSCAD
run: | run: |
cd $GITHUB_WORKSPACE cd $GITHUB_WORKSPACE
@ -36,8 +39,8 @@ jobs:
- name: Apt Update - name: Apt Update
run: sudo apt update run: sudo apt update
- name: Install Python dev - name: Install Required Libraries
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil libfuse2
- name: Install OpenSCAD-DocsGen package. - name: Install OpenSCAD-DocsGen package.
run: sudo pip3 install openscad-docsgen run: sudo pip3 install openscad-docsgen
@ -77,8 +80,8 @@ jobs:
- name: Apt Update - name: Apt Update
run: sudo apt update run: sudo apt update
- name: Install Python dev - name: Install Required Libraries
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil libfuse2
- name: Install OpenSCAD-DocsGen package. - name: Install OpenSCAD-DocsGen package.
run: sudo pip3 install openscad-docsgen run: sudo pip3 install openscad-docsgen