forked from devopvoid/webrtc-java
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 885 Bytes
/
deploy.yml
File metadata and controls
46 lines (39 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Deploy
on:
push:
branches:
- try_deploy
paths:
- "**.cpp"
- "**.h"
- "**.java"
pull_request:
branches:
- master
workflow_dispatch:
env:
WEBRTC_CACHE_BRANCH: 6998
WEBRTC_CHECKOUT_FOLDER: webrtc
WEBRTC_INSTALL_FOLDER: webrtc/build
jobs:
build-windows:
strategy:
fail-fast: false
matrix:
platform:
- name: windows_x86_64
runs-on: windows-2022
java: [17]
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- id: prepare
name: Prepare build
uses: ./.github/actions/prepare-windows
- id: maven-build
name: Maven build
uses: ./.github/actions/build
with:
java-version: ${{ matrix.java }}
platform-name: ${{ matrix.platform.name }}