-
Notifications
You must be signed in to change notification settings - Fork 1
75 lines (58 loc) · 1.44 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
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
name: Main
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
#- name: Set up Homebrew
# uses: Homebrew/actions/setup-homebrew@master
- name: Remove Podman
run: |
sudo apt-get remove crun podman
- uses: actions/checkout@v4
with:
repository: containers/podman
ref: v5.1.2
path: ./podman
- name: Build Podman
run: |
sudo apt-get install libseccomp-dev libgpgme-dev
cd podman
make BUILDTAGS="systemd" PREFIX=/usr
sudo make install PREFIX=/usr
- name: Start Podman
run: |
podman --version
systemctl --user enable --now podman.socket
systemctl --user status podman.socket
#- name: Install Podman
# brew install crun podman
#- name: Versions
# run: |
# crun --version
# podman version
#- name: Start Podman
# run: brew services start podman
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: taiki-e/install-action@v2
with:
tool: cargo-rdme
- name: Format
run: cargo fmt --check
- name: README sync
run: cargo rdme --check
- name: Build
run: cargo build --verbose
- name: Tests
run: cargo test --verbose