-
-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (43 loc) · 1.3 KB
/
main.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: "CI Multiplatform Build"
on: [push, pull_request]
jobs:
ubuntu_1804:
name: "Ubuntu 18.04"
runs-on: [ubuntu-18.04]
steps:
- name: "Checkout"
uses: actions/checkout@v2.3.3
- name: "Install dependencies"
shell: bash
working-directory: ${{ github.workspace }}
run: ./CI/linux/install-dependencies-ubuntu.sh
- name: "Build Plugin"
shell: bash
working-directory: ${{ github.workspace }}
run: ./CI/linux/build-ubuntu.sh``
- name: "Package Plugin"
shell: bash
working-directory: ${{ github.workspace }}
run: |
./CI/linux/package.sh
./CI/linux/package-ubuntu.sh
ubuntu_2004:
name: "Ubuntu 20.04"
runs-on: [ubuntu-20.04]
steps:
- name: "Checkout"
uses: actions/checkout@v2.3.3
- name: "Install dependencies"
shell: bash
working-directory: ${{ github.workspace }}
run: ./CI/linux/install-dependencies-ubuntu.sh
- name: "Build Plugin"
shell: bash
working-directory: ${{ github.workspace }}
run: ./CI/linux/build-ubuntu.sh``
- name: "Package Plugin"
shell: bash
working-directory: ${{ github.workspace }}
run: |
./CI/linux/package.sh
./CI/linux/package-ubuntu.sh