-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (62 loc) · 2 KB
/
linux.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- master
jobs:
build:
name: x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0
- uses: actions/checkout@v2
- name: ⚡ Cache
uses: actions/cache@v2
with:
path: |
/var/lib/docker
key: ${{ runner.os }}-northstar
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "3.9.7"
architecture: x64
- name: Login to DockerHub
if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'forgeflux-org/northstar'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: install virtualenv
run: pip install virtualenv
- name: Install python dependencies
run: make env
- name: Run database migrations
run: make migrate
- name: Run linting
run: make lint
- name: Run tests
run: make test
- name: Prepare test coverage report
run: make coverage
- name: Create docker image
run: make docker
- name: Publish docker image
if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'forgeflux-org/northstar'
run: docker push forgedfed/northstar
- name: Generate documentation
run: make doc
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master' || github.event_name == 'push'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: northstar/static/docs/openapi/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2