mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Attempt to fix github action errorss.
This commit is contained in:
parent
646b179b60
commit
45e68af2d7
3 changed files with 7 additions and 10 deletions
2
.github/workflows/docsgen.yml
vendored
2
.github/workflows/docsgen.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- name: Checkout Wiki
|
- name: Checkout Wiki
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: ${{github.repository}}.wiki
|
repository: https://github.com/revarbat/BOSL2.wiki.git
|
||||||
path: BOSL2.wiki
|
path: BOSL2.wiki
|
||||||
|
|
||||||
- name: Install gifsicle
|
- name: Install gifsicle
|
||||||
|
|
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
@ -8,11 +8,6 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Clone Wiki
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE
|
|
||||||
git clone https://github.com/revarbat/BOSL2.wiki.git
|
|
||||||
|
|
||||||
- name: Install OpenSCAD
|
- name: Install OpenSCAD
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
|
@ -33,9 +28,10 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Clone Wiki
|
- name: Clone Wiki
|
||||||
run: |
|
uses: actions/checkout@v2
|
||||||
cd $GITHUB_WORKSPACE
|
with:
|
||||||
git clone https://github.com/revarbat/BOSL2.wiki.git
|
repository: https://github.com/revarbat/BOSL2.wiki.git
|
||||||
|
path: BOSL2.wiki
|
||||||
|
|
||||||
- name: Apt Update
|
- name: Apt Update
|
||||||
run: sudo apt update
|
run: sudo apt update
|
||||||
|
@ -53,7 +49,7 @@ jobs:
|
||||||
sudo mv OpenSCAD-2021.01*-x86_64.AppImage /usr/local/bin/openscad
|
sudo mv OpenSCAD-2021.01*-x86_64.AppImage /usr/local/bin/openscad
|
||||||
sudo chmod +x /usr/local/bin/openscad
|
sudo chmod +x /usr/local/bin/openscad
|
||||||
|
|
||||||
- name: Generating Docs
|
- name: Checking Docs
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
echo "::add-matcher::.github/openscad_docsgen.json"
|
echo "::add-matcher::.github/openscad_docsgen.json"
|
||||||
|
|
|
@ -45,6 +45,7 @@ function ident(n) = [
|
||||||
// bool = is_affine(x,<dim>);
|
// bool = is_affine(x,<dim>);
|
||||||
// Topics: Affine, Matrices, Transforms, Type Checking
|
// Topics: Affine, Matrices, Transforms, Type Checking
|
||||||
// See Also: is_matrix()
|
// See Also: is_matrix()
|
||||||
|
// fleegul()
|
||||||
// Description:
|
// Description:
|
||||||
// Tests if the given value is an affine matrix, possibly also checking it's dimenstion.
|
// Tests if the given value is an affine matrix, possibly also checking it's dimenstion.
|
||||||
// Arguments:
|
// Arguments:
|
||||||
|
|
Loading…
Reference in a new issue