File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,28 @@ jobs:
138138 name : sdrpp_macos_intel
139139 path : ${{runner.workspace}}/sdrpp_macos_intel.zip
140140
141+ build_debian_buster :
142+ runs-on : ubuntu-latest
143+
144+ steps :
145+ - uses : actions/checkout@v3
146+
147+ - name : Create Docker Image
148+ run : cd $GITHUB_WORKSPACE/docker_builds/debian_buster && docker build . --tag sdrpp_build
149+
150+ - name : Run Container
151+ run : docker run --name build -v $GITHUB_WORKSPACE:/root/SDRPlusPlus --env BUILD_NO="-$GITHUB_RUN_NUMBER" sdrpp_build /root/do_build.sh
152+
153+ - name : Recover Deb Archive
154+ working-directory : ${{runner.workspace}}
155+ run : docker cp build:/root/SDRPlusPlus/sdrpp_debian_amd64.deb ./
156+
157+ - name : Save Deb Archive
158+ uses : actions/upload-artifact@v3
159+ with :
160+ name : sdrpp_debian_buster_amd64
161+ path : ${{runner.workspace}}/sdrpp_debian_amd64.deb
162+
141163 build_debian_bullseye :
142164 runs-on : ubuntu-latest
143165
You can’t perform that action at this time.
0 commit comments