-
-
Notifications
You must be signed in to change notification settings - Fork 49
41 lines (34 loc) · 795 Bytes
/
ci.yml
File metadata and controls
41 lines (34 loc) · 795 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
---
name: CI
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: setup
run: |
make version ci-setup
env:
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }}
GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
- name: build
run: make build-docker-image build-in-docker
- name: test
run: make validate-in-docker
- name: upload packages
uses: actions/upload-artifact@v7
with:
name: build
path: build