forked from bytedeco/javacv
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 1.09 KB
/
javacv.yml
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
name: javacv
on: [push, pull_request, workflow_dispatch]
env:
CI_DEPLOY_MODULE: .
CI_DEPLOY_PLATFORM: ${{ github.job }}
CI_DEPLOY_SETTINGS: ${{ secrets.CI_DEPLOY_SETTINGS }}
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
STAGING_REPOSITORY: ${{ secrets.STAGING_REPOSITORY }}
jobs:
linux-x86_64:
runs-on: ubuntu-20.04
container: ubuntu:bionic
steps:
- uses: bytedeco/javacpp-presets/.github/actions/deploy-ubuntu@actions
- uses: mxschmitt/[email protected]
if: ${{ github.event_name == 'workflow_dispatch' }}
with:
sudo: false
macosx-x86_64:
runs-on: macos-11
steps:
- uses: bytedeco/javacpp-presets/.github/actions/deploy-macosx@actions
- uses: mxschmitt/[email protected]
if: ${{ github.event_name == 'workflow_dispatch' }}
windows-x86_64:
runs-on: windows-2019
steps:
- uses: bytedeco/javacpp-presets/.github/actions/deploy-windows@actions
- uses: mxschmitt/[email protected]
if: ${{ github.event_name == 'workflow_dispatch' }}