Java CI with Maven #73
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Java CI with Maven | |
on: | |
#[push] | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get versions data from repo | |
run: wget -O maven-metadata.xml https://oss.sonatype.org/service/local/repositories/snapshots/content/io/antmedia/ant-media-server/maven-metadata.xml | |
- name: Install jq | |
run: sudo apt-get install jq -y | |
- name: Download war File | |
run: | | |
export LATEST_SNAPSHOT=$(cat maven-metadata.xml | grep "<version>" | tail -n 1 | xargs | cut -c 10-23) | |
echo $LATEST_SNAPSHOT | |
wget -O ConferenceCall.war "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.antmedia.webrtc&a=ConferenceCall&v=${LATEST_SNAPSHOT}&e=war" | |
ls -al | |
- name: Login to server | |
run: | | |
curl -X POST -H "Accept: Application/json" -H "Content-Type: application/json" ${{ secrets.SERVER_URL }}/rest/v2/users/authenticate -d '{"email":"${{ secrets.USER_NAME }}","password":"${{ secrets.PASSWORD }}"}' -c cookie.txt | |
- name: Delete Old App | |
run: | | |
curl -i -X DELETE -H "Accept: Application/json" -H "Content-Type: application/json" "${{ secrets.SERVER_URL }}/rest/v2/applications/Conference" -b cookie.txt | |
sleep 10 | |
- name: Create New App | |
run: | | |
export WAR_FILE_NAME="ConferenceCall.war" | |
curl -X PUT -H "Accept: Application/json" -H "Content-Type: multipart/form-data" -F "file=@./$WAR_FILE_NAME" "${{ secrets.SERVER_URL }}/rest/v2/applications/Conference" -b cookie.txt | |
- name: Check if Conference app exists | |
id: check-conference-app | |
run: | | |
response=$(curl -s "${{ secrets.SERVER_URL }}/rest/v2/applications" -b cookie.txt) | |
if [[ $(echo "$response" | jq '. | any(. == "Conference")' | grep -c true) -eq 0 ]]; then | |
echo "::set-output name=app_exists::false" | |
else | |
echo "::set-output name=app_exists::true" | |
fi | |
- name: Setup kubectl | |
uses: azure/k8s-set-context@v1 | |
with: | |
kubeconfig: ${{ secrets.KUBE_CONFIG_DATA }} | |
- name: Delete pod if the conference app not exists | |
if: steps.check-conference-app.outputs.app_exists == 'false' | |
run: | | |
POD_NAME=$(kubectl get pods -l app=ant-media-origin -n antmedia -o jsonpath='{.items[0].metadata.name}') | |
kubectl delete pod $POD_NAME -n antmedia | |
sleep 20 | |
- name: Login to server | |
if: steps.check-conference-app.outputs.app_exists == 'false' | |
run: | | |
curl -X POST -H "Accept: Application/json" -H "Content-Type: application/json" ${{ secrets.SERVER_URL }}/rest/v2/users/authenticate -d '{"email":"${{ secrets.USER_NAME }}","password":"${{ secrets.PASSWORD }}"}' -c cookie.txt | |
- name: Recreate Conference App | |
run: | | |
export WAR_FILE_NAME="ConferenceCall.war" | |
curl -X PUT -H "Accept: Application/json" -H "Content-Type: multipart/form-data" -F "file=@./$WAR_FILE_NAME" "${{ secrets.SERVER_URL }}/rest/v2/applications/Conference" -b cookie.txt | |