Skip to content

Commit

Permalink
Compile
Browse files Browse the repository at this point in the history
  • Loading branch information
senilio committed Nov 7, 2023
1 parent 0e96bb5 commit f1ec542
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,17 @@ jobs:
container: dockcross/${{ matrix.toolchain }}:latest
steps:
- uses: actions/checkout@v4
- name: Compile project
run: |
- run: |
apt-get install -y autoconf-archive
wget https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-1.6.4.tar.gz
tar xvf libgpiod-1.6.4.tar.gz
cd libgpiod-1.6.4
./autogen.sh --enable-tools=yes
make
make install
ls -Rl
- run: |
cmake -B build .
cmake --build build
mv build/GCFFlasher GCFFlasher-${{ matrix.toolchain }}
Expand Down

0 comments on commit f1ec542

Please sign in to comment.