Update GitHub workflows

This commit is contained in:
Crayon2000 2024-10-19 16:49:24 -04:00
parent da0423c76d
commit 35ddfba78a
3 changed files with 6 additions and 7 deletions

View file

@ -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:

View file

@ -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

View file

@ -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: