mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-23 07:22:23 +00:00
Update GitHub workflows
This commit is contained in:
parent
da0423c76d
commit
35ddfba78a
3 changed files with 6 additions and 7 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -17,9 +17,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build library and examples
|
- name: Build library and examples
|
||||||
run: |
|
run: |
|
||||||
(cd GRRLIB && make clean all install)
|
make -C GRRLIB clean all install
|
||||||
(cd GRRLIB/GRRLIB && make PLATFORM=cube clean all install)
|
make -C GRRLIB/GRRLIB PLATFORM=cube clean all install
|
||||||
(cd examples && make)
|
make -C examples
|
||||||
|
|
||||||
- uses: actions/upload-artifact@master
|
- uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/doc.yml
vendored
2
.github/workflows/doc.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install doxygen
|
- name: Install doxygen
|
||||||
run: |
|
run: |
|
||||||
wget https://www.doxygen.nl/files/doxygen-1.10.0.linux.bin.tar.gz -O - | tar -xzv --directory=/tmp/
|
wget https://www.doxygen.nl/files/doxygen-1.12.0.linux.bin.tar.gz -O - | tar -xzv --directory=/tmp/
|
||||||
cd /tmp/doxygen-*
|
cd /tmp/doxygen-*
|
||||||
sudo make install
|
sudo make install
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|
|
@ -96,11 +96,10 @@ Go to the directory where the code was downloaded:
|
||||||
cd \grr
|
cd \grr
|
||||||
```
|
```
|
||||||
|
|
||||||
To install GRRLIB with Make in a few commands:
|
To install GRRLIB with Make in a single command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd GRRLIB
|
make -C GRRLIB clean all install
|
||||||
make clean all install
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you prefer to use CMake, it can also be installed with a few commands:
|
If you prefer to use CMake, it can also be installed with a few commands:
|
||||||
|
|
Loading…
Reference in a new issue