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
|
||||
run: |
|
||||
(cd GRRLIB && make clean all install)
|
||||
(cd GRRLIB/GRRLIB && make PLATFORM=cube clean all install)
|
||||
(cd examples && make)
|
||||
make -C GRRLIB clean all install
|
||||
make -C GRRLIB/GRRLIB PLATFORM=cube clean all install
|
||||
make -C examples
|
||||
|
||||
- uses: actions/upload-artifact@master
|
||||
with:
|
||||
|
|
2
.github/workflows/doc.yml
vendored
2
.github/workflows/doc.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
|
||||
- name: Install doxygen
|
||||
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-*
|
||||
sudo make install
|
||||
sudo apt-get update
|
||||
|
|
|
@ -96,11 +96,10 @@ Go to the directory where the code was downloaded:
|
|||
cd \grr
|
||||
```
|
||||
|
||||
To install GRRLIB with Make in a few commands:
|
||||
To install GRRLIB with Make in a single command:
|
||||
|
||||
```bash
|
||||
cd GRRLIB
|
||||
make clean all install
|
||||
make -C GRRLIB clean all install
|
||||
```
|
||||
|
||||
If you prefer to use CMake, it can also be installed with a few commands:
|
||||
|
|
Loading…
Reference in a new issue