Skip to content

Commit

Permalink
Disable everything but docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jul 24, 2024
1 parent d850ce9 commit 14d5eff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Comment the line(s) below to disable particular pipeline(s):

do_Docker=true
do_FullBuild=true
do_FuncTest=true
do_Fuzzing=true
do_Glitch=true
do_MinBuild=true
#do_FullBuild=true
#do_FuncTest=true
#do_Fuzzing=true
#do_Glitch=true
#do_MinBuild=true
6 changes: 4 additions & 2 deletions .github/workflows/rtpproxy_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,13 +393,14 @@ jobs:

Docker:
name: Build&Push to DockerHub
needs: [LoadJobs_conf, Fuzzing]
#needs: [LoadJobs_conf, Fuzzing]
needs: [LoadJobs_conf]
if: needs.LoadJobs_conf.outputs.do_Docker == 'true' &&
(github.event_name == 'push' || github.event_name == 'pull_request')
runs-on: ubuntu-latest
env:
DOCKER_REPO: sippylabs/rtpproxy
PLATFORMS: linux/amd64,linux/i386,linux/arm/v7,linux/arm64
PLATFORMS: linux/amd64 #,linux/i386,linux/arm/v7,linux/arm64
BASE_IMAGE: debian:12-slim
steps:
- name: Checkout repository
Expand Down Expand Up @@ -458,6 +459,7 @@ jobs:
outputs: type=tar,dest=/tmp/ccache_export.tar

- name: Push Docker image
if: false
uses: docker/build-push-action@v6
with:
context: .
Expand Down

0 comments on commit 14d5eff

Please sign in to comment.