Fix dependency on aesnd #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
container: | |
image: devkitpro/devkitppc:latest | |
env: | |
GRRLIBVERS: 4.5.1 | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v4 | |
- name: Download and install GRRLIB | |
run: | | |
wget https://github.com/GRRLIB/GRRLIB/archive/v${GRRLIBVERS}.tar.gz -O - | tar -xzv --directory=/tmp/ | |
(cd /tmp/GRRLIB-${GRRLIBVERS}/GRRLIB && make all install) | |
- name: Build library and demo | |
run: | | |
(cd GRRMOD && make && make install) | |
(cd demo && make) |