Skip to content

Commit

Permalink
Add worflow for ssl (docker)
Browse files Browse the repository at this point in the history
  • Loading branch information
muratugureminoglu committed Jul 1, 2024
1 parent f32a402 commit e29014a
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/install-dockerfile-and-check-ssl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Docker Build and Test

on:
workflow_dispatch:
inputs:
branch_name:
description: 'build branch name'
required: true
default: 'master'

jobs:
build:
runs-on: self-hosted

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: stop the AMS service
run: sudo systemctl stop antmedia

- name: Run Docker service
run: sudo systemctl restart docker

- name: Build Docker image
run: docker build -f docker/Dockerfile_Process --network=host -t antmediaserver --build-arg LicenseKey="${{ secrets.ENTERPRISE_LICENSE }}" .

- name: Run Docker container
run: docker run -d --name antmedia --network=host -it antmediaserver

- name: Clone branch
run: |
git clone --depth=1 -b ${{ inputs.branch_name }} https://github.com/ant-media/Ant-Media-Server.git || git clone --depth=1 https://github.com/ant-media/Ant-Media-Server.git
- name: Copy enable_ssl.sh from cloned branch to container
run: docker cp Ant-Media-Server/src/main/server/enable_ssl.sh antmedia:/usr/local/antmedia/enable_ssl.sh

- name: Run enable_ssl.sh inside container
run: docker exec antmedia bash /usr/local/antmedia/enable_ssl.sh

- name: Verify container is running
run: |
sleep 20
docker ps -f name=antmedia
if [ $(docker ps -f name=antmedia --format '{{.Names}}') != "antmedia" ]; then
echo "Container is not running"
exit 1
fi
- name: Test application
run: |
docker exec antmedia curl -f https://${{ secrets.CI_SSL_TEST_DOMAIN }}:5443
- name: Stop and remove container
if: ${{ always() }}
run: |
docker stop antmedia
docker rm antmedia
sudo systemctl start antmedia

0 comments on commit e29014a

Please sign in to comment.