forked from jitsi/docker-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release * b3abfc0 ci: split unstable build and test workflows (jitsi#1601) * 603d461 jibri: adapt to new ChromeDriver zip file structure * a76b1f4 jibri: simplify ChromeDriver download * fd1c308 jibri: fix new ChromeDriver API endpoints * 2c0a793 jibri: update Chrome to 116 * 916bccb jibri: autoscaler sidecar tuning parameters * 6e59319 misc: working on unstable
- Loading branch information
Showing
20 changed files
with
365 additions
and
249 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,84 @@ | ||
name: CI Test Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver: docker | ||
|
||
- name: Build base | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./base | ||
load: true | ||
tags: | | ||
jitsi/base:latest | ||
build-args: | | ||
JITSI_RELEASE=unstable | ||
- name: Build base-java | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./base-java | ||
load: true | ||
tags: | | ||
jitsi/base-java:latest | ||
- name: Build jibri | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./jibri | ||
load: true | ||
tags: | | ||
jitsi/jibri:latest | ||
- name: Build jicofo | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./jicofo | ||
load: true | ||
tags: | | ||
jitsi/jicofo:latest | ||
- name: Build jigasi | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./jigasi | ||
load: true | ||
tags: | | ||
jitsi/jigasi:latest | ||
- name: Build jvb | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./jvb | ||
load: true | ||
tags: | | ||
jitsi/jvb:latest | ||
- name: Build prosody | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./prosody | ||
load: true | ||
tags: | | ||
jitsi/prosody:latest | ||
- name: Build web | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: ./web | ||
load: true | ||
tags: | | ||
jitsi/web:latest |
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
Oops, something went wrong.