Skip to content

Commit

Permalink
Run workflows on pull requests
Browse files Browse the repository at this point in the history
Signed-off-by: Christian König <[email protected]>
  • Loading branch information
yubiuser committed Jun 9, 2023
1 parent eef6198 commit b4b8d26
Show file tree
Hide file tree
Showing 8 changed files with 65 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check_ap2_systemd_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Basic ALSA configuration for systemd, using a build folder.
on:
push:
branches: [ "development" ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check_ap2_systemd_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Full configuration (but without apple-alac) for systemd.
on:
push:
branches: [ "development", "danger" ]

pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/check_ap2_systemd_full_build_folder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Full configuration (but without apple-alac) for systemd, using a build fol
on:
push:
branches: [ "development" ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check_ap2_systemv_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Full configuration (but without apple-alac) for a System V system.
on:
push:
branches: [ "development" ]

pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check_classic_mac_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Basic libao configuration for macOS with BREW -- classic only, because mac
on:
push:
branches: [ "development", "danger" ]

pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check_classic_systemd_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Basic ALSA classic configuration for systemd, using a build folder.
on:
push:
branches: [ "development" ]

pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/check_classic_systemd_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Full classic configuration (but without apple-alac) for systemd, using a b
on:
push:
branches: [ "development", "danger" ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,65 @@
# 'master' - rolling, rolling-classic
# 'development' - development, development-classic

name: Build and push docker (commit)
name: Build and push docker (push/pull request)

on:
push:
branches:
- master
- development
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

env:
DOCKER_PLATFORMS: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
NQPTP_BRANCH: main

jobs:
main:
test-build-on-pull-request:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- name: Set SHAIRPORT_SYNC_BRANCH env
run: |
SHAIRPORT_SYNC_BRANCH=$(git rev-parse --abbrev-ref HEAD)
echo "Current SHAIRPORT_SYNC_BRANCH set to ${SHAIRPORT_SYNC_BRANCH}"
echo "SHAIRPORT_SYNC_BRANCH=${SHAIRPORT_SYNC_BRANCH}" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/[email protected]

- name: Set up Docker Buildx
uses: docker/[email protected]

- name: Build (classic)
uses: docker/[email protected]
with:
context: ./
file: ./docker/classic/Dockerfile
push: false
build-args: |
SHAIRPORT_SYNC_BRANCH=${{ env.SHAIRPORT_SYNC_BRANCH }}
- name: Build
uses: docker/[email protected]
with:
context: ./
file: ./docker/Dockerfile
push: false
build-args: |
SHAIRPORT_SYNC_BRANCH=${{ env.SHAIRPORT_SYNC_BRANCH }}
NQPTP_BRANCH=${{ env.NQPTP_BRANCH }}
build-and-publish:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit b4b8d26

Please sign in to comment.