Created workflow to test compiling against fujinet-config #2
Workflow file for this run
This file contains hidden or 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: Verify CONFIG compiles | ||
|
Check failure on line 1 in .github/workflows/build-config.yml
|
||
| on: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| container: | ||
| image: fozztexx/defoogi:1.4.2 | ||
| steps: | ||
| - name: Checkout this repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| path: fn-lib | ||
| - name: Checkout other repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| repository: https://github.com/FujiNetWIFI/fujinet-config.git | ||
| path: fn-config | ||
| - name: Set up build environment | ||
| - name: Compile CONFIG | ||
| working-directory: fn-config | ||
| run: | | ||
| make FUJINET_LIB=$GITHUB_WORKSPACE/fn-lib | ||