-
Notifications
You must be signed in to change notification settings - Fork 14
97 lines (83 loc) · 2.29 KB
/
test.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Test
on:
push:
branches: [main]
pull_request:
release:
types: [published]
schedule:
- cron: '25 3 * * *'
env:
CARGO_TERM_COLOR: always
jobs:
build-debian-11:
runs-on: ubuntu-latest
container: debian:11
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update
apt-get -y install build-essential dpkg-dev ca-certificates sudo curl
apt-get -y build-dep .
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ github.event.schedule && 'nightly' || 'stable' }}
- name: Build
run: cargo build --verbose
build-debian-package-11:
runs-on: ubuntu-latest
container: debian:11
steps:
- uses: actions/checkout@v4
with:
path: clone
- name: Install dependencies
run: |
apt-get update
apt-get install -y build-essential dpkg-dev ca-certificates sudo curl
cd clone
apt-get build-dep -y .
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ github.event.schedule && 'nightly' || 'stable' }}
- name: Build package
run: |
debian/rules vendor
dpkg-buildpackage --no-sign
working-directory: clone
- uses: actions/upload-artifact@v3
with:
name: deb-package-debian-11
path: |
./*
!./clone/**
run-ci-debian-11:
runs-on: ubuntu-latest
#container: debian:11
needs: [build-debian-package-11]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y install build-essential systemd-container debootstrap
- uses: actions/download-artifact@v3
with:
name: deb-package-debian-11
- name: CI
run: ci/test_nspawn.sh
env:
HAVE_SYSTEMD: "0"
create-release:
runs-on: ubuntu-latest
needs: [run-ci-debian-11]
if: github.event.release
steps:
- uses: actions/download-artifact@v3
with:
name: deb-package-debian-11
- uses: softprops/action-gh-release@v2
with:
files: "*"
tag_name: ${{ github.event.release.tag_name }}