-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f32a402
commit e29014a
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |