6f2c319785
# Conflicts: # back/src/Services/SocketManager.ts # deeployer.libsonnet # docker-compose.yaml # front/src/Connexion/RoomConnection.ts # front/src/Enum/EnvironmentVariable.ts # front/src/Phaser/Game/GameScene.ts # front/webpack.config.js # pusher/src/Controller/IoSocketController.ts
217 lines
5.9 KiB
YAML
217 lines
5.9 KiB
YAML
name: Build, push and deploy Docker image
|
|
|
|
on:
|
|
- push
|
|
|
|
# Enables BuildKit
|
|
env:
|
|
DOCKER_BUILDKIT: 1
|
|
|
|
jobs:
|
|
|
|
build-front:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push front image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: front/Dockerfile
|
|
path: ./
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-front
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
build-back:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push back image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: back/Dockerfile
|
|
path: ./
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-back
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
build-pusher:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push back image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: pusher/Dockerfile
|
|
path: ./
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-pusher
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
build-uploader:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push back image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: uploader/Dockerfile
|
|
path: ./
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-uploader
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
build-website:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push back image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: website/Dockerfile
|
|
path: website/
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-website
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
build-maps:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: "Build and push front image"
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
dockerfile: maps/Dockerfile
|
|
path: maps/
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: thecodingmachine/workadventure-maps
|
|
tags: ${{ env.GITHUB_REF_SLUG }}
|
|
add_git_labels: true
|
|
|
|
deeploy:
|
|
needs:
|
|
- build-front
|
|
- build-back
|
|
- build-pusher
|
|
- build-maps
|
|
- build-uploader
|
|
- build-website
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
# Create a slugified value of the branch
|
|
- uses: rlespinasse/github-slug-action@3.1.0
|
|
|
|
- name: Deploy
|
|
uses: thecodingmachine/deeployer@master
|
|
env:
|
|
KUBE_CONFIG_FILE: ${{ secrets.KUBE_CONFIG_FILE }}
|
|
ADMIN_API_TOKEN: ${{ secrets.ADMIN_API_TOKEN }}
|
|
JITSI_ISS: ${{ secrets.JITSI_ISS }}
|
|
JITSI_URL: ${{ secrets.JITSI_URL }}
|
|
SECRET_JITSI_KEY: ${{ secrets.SECRET_JITSI_KEY }}
|
|
with:
|
|
namespace: workadventure-${{ env.GITHUB_REF_SLUG }}
|
|
|
|
- name: Add a comment in PR
|
|
uses: unsplash/comment-on-pr@v1.2.0
|
|
if: ${{ env.GITHUB_REF_SLUG != 'master' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
msg: Environment deployed at https://${{ env.GITHUB_REF_SLUG }}.workadventure.test.thecodingmachine.com
|
|
check_for_duplicate_msg: true
|
|
|
|
- name: Run Cypress tests
|
|
uses: cypress-io/github-action@v2
|
|
if: ${{ env.GITHUB_REF_SLUG != 'master' }}
|
|
env:
|
|
CYPRESS_BASE_URL: https://play.${{ env.GITHUB_REF_SLUG }}.workadventure.test.thecodingmachine.com
|
|
with:
|
|
env: host=play.${{ env.GITHUB_REF_SLUG }}.workadventure.test.thecodingmachine.com,port=80
|
|
spec: cypress/integration/spec.js
|
|
wait-on: https://play.${{ env.GITHUB_REF_SLUG }}.workadventure.test.thecodingmachine.com
|
|
working-directory: e2e
|
|
|
|
- name: Run Cypress tests in prod
|
|
uses: cypress-io/github-action@v2
|
|
if: ${{ env.GITHUB_REF_SLUG == 'master' }}
|
|
env:
|
|
CYPRESS_BASE_URL: https://play.workadventu.re
|
|
with:
|
|
env: host=play.workadventu.re
|
|
spec: cypress/integration/spec.js
|
|
wait-on: https://workadventu.re
|
|
working-directory: e2e
|
|
|
|
- name: "Upload the screenshot on test failure"
|
|
uses: actions/upload-artifact@v1
|
|
if: failure()
|
|
with:
|
|
name: "screenshot"
|
|
path: "./e2e/cypress/screenshots/spec.js/WorkAdventureGame -- loads (failed).png"
|