Skip to content

Commit 5d39431

Browse files
committed
Created workflow to test compiling against fujinet-config
1 parent 269d11f commit 5d39431

File tree

4 files changed

+38
-5
lines changed

4 files changed

+38
-5
lines changed

.github/workflows/build-config.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Verify CONFIG compiles
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
container:
12+
image: fozztexx/defoogi:1.4.2
13+
14+
steps:
15+
- name: Checkout this repository
16+
uses: actions/checkout@v4
17+
with:
18+
path: fn-lib
19+
20+
- name: Checkout CONFIG
21+
uses: actions/checkout@v4
22+
with:
23+
repository: FujiNetWIFI/fujinet-config
24+
path: fn-config
25+
26+
- name: Build fn-lib
27+
working-directory: fn-lib
28+
run: |
29+
make
30+
31+
- name: Compile CONFIG
32+
working-directory: fn-config
33+
run: |
34+
make FUJINET_LIB=$GITHUB_WORKSPACE/fn-lib/build

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ build/
99
Makefile.options
1010

1111
_temp
12-
*.err
12+
*.err
13+
*~
14+
*.orig
15+
*.rej

network_http_set_channel_mode.err

Lines changed: 0 additions & 1 deletion
This file was deleted.

network_read.err

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)