Skip to content

Commit

Permalink
workflows: Add jobs to test nightly rpms on CentOS
Browse files Browse the repository at this point in the history
Signed-off-by: Anoop C S <[email protected]>
  • Loading branch information
anoopcs9 authored and mergify[bot] committed Jun 13, 2023
1 parent b5f07c5 commit fa27f06
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/container-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,20 @@ jobs:
image: "samba-server:nightly"
retention_days: 1

build-nightly-server-centos:
runs-on: ubuntu-latest
env:
BUILDAH_FORMAT: oci
steps:
- uses: actions/checkout@v3
- name: Build the nightly server image
run: make OS_NAME=centos build-nightly-server
- name: Upload nightly server image
uses: ishworkh/docker-image-artifact-upload@v1
with:
image: "samba-server:centos-nightly"
retention_days: 1

build-nightly-ad-server:
runs-on: ubuntu-latest
env:
Expand All @@ -202,6 +216,18 @@ jobs:
- name: Test the nightly server image
run: LOCAL_TAG=samba-server:nightly tests/test-samba-container.sh

test-nightly-server-centos:
needs: build-nightly-server-centos
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download nightly server image
uses: ishworkh/docker-image-artifact-download@v1
with:
image: "samba-server:centos-nightly"
- name: Test the nightly server image
run: LOCAL_TAG=samba-server:centos-nightly tests/test-samba-container.sh

test-ad-server-kubernetes:
needs:
- build-ad-server
Expand Down

0 comments on commit fa27f06

Please sign in to comment.