-
Notifications
You must be signed in to change notification settings - Fork 5
26 lines (26 loc) · 772 Bytes
/
ci.yml
File metadata and controls
26 lines (26 loc) · 772 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
name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: quay.io/mizdebsk/javapackages-bootstrap-ci:latest
steps:
- name: Checkout git repository
uses: actions/checkout@v2
- name: Ensure patches have Forwarded tag
run: "! grep -L ^Forwarded: patches/*/*.patch | grep ."
- name: Import cached upstream sources
run: cp -R /var/cache/upstream .
- name: Fetch latest upstream sources
run: ./downstream.sh clone
- name: Prepare downstream sources
run: ./downstream.sh prep
- name: Run build
run: ./mbi.sh build
- name: Run dist
run: ./mbi.sh dist