11 lines
325 B
YAML
11 lines
325 B
YAML
|
on: [push]
|
||
|
jobs:
|
||
|
build-hamnet70:
|
||
|
runs-on: docker
|
||
|
container:
|
||
|
image: git.tkolb.de/amateurfunk/hamnet70/impl_buildenv:1.1
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- run: cd impl && cp src/config.h.template src/config.h && sed -i 's/undefined/"TESTCALL"/' src/config.h
|
||
|
- run: cd impl && ./make.sh
|