mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-17 01:49:48 +00:00
Merge pull request #996 from revarbat/revarbat_dev
FUSE fix for github action VMs.
This commit is contained in:
commit
d50aba88a8
3 changed files with 11 additions and 8 deletions
4
.github/workflows/gen_docs.yml
vendored
4
.github/workflows/gen_docs.yml
vendored
|
@ -17,8 +17,8 @@ jobs:
|
|||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
|
||||
- name: Install Python dev
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle
|
||||
- name: Install Required Libraries
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2
|
||||
|
||||
- name: Install OpenSCAD-DocsGen package.
|
||||
run: sudo pip3 install openscad-docsgen
|
||||
|
|
4
.github/workflows/gen_tutorials.yml
vendored
4
.github/workflows/gen_tutorials.yml
vendored
|
@ -17,8 +17,8 @@ jobs:
|
|||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
|
||||
- name: Install Python dev
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle
|
||||
- name: Install Required Libraries
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2
|
||||
|
||||
- name: Install OpenSCAD-DocsGen package.
|
||||
run: sudo pip3 install openscad-docsgen
|
||||
|
|
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
|
@ -8,6 +8,9 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Required Libraries
|
||||
run: sudo apt-get install libfuse2
|
||||
|
||||
- name: Install OpenSCAD
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
|
@ -36,8 +39,8 @@ jobs:
|
|||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
|
||||
- name: Install Python dev
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil
|
||||
- name: Install Required Libraries
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil libfuse2
|
||||
|
||||
- name: Install OpenSCAD-DocsGen package.
|
||||
run: sudo pip3 install openscad-docsgen
|
||||
|
@ -77,8 +80,8 @@ jobs:
|
|||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
|
||||
- name: Install Python dev
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil
|
||||
- name: Install Required Libraries
|
||||
run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil libfuse2
|
||||
|
||||
- name: Install OpenSCAD-DocsGen package.
|
||||
run: sudo pip3 install openscad-docsgen
|
||||
|
|
Loading…
Reference in a new issue