-
Notifications
You must be signed in to change notification settings - Fork 4
114 lines (85 loc) · 3.92 KB
/
openbsd.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: OpenBSD
on:
push:
branches: [ c ]
pull_request:
branches: [ c ]
jobs:
test:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: vagrant-generic-openbsd-7
restore-keys: |
vagrant-generic-openbsd-7
- uses: leleliu008/github-actions-vagrant@main
with:
ncpu: 1
mem: 1024
box: generic/openbsd7
run: |
run sudo pkg_add cmake ninja llvm pkgconf curl libgit2 libarchive libyaml jansson sqlite
run cmake -S . -B build.d -G Ninja -DCMAKE_INSTALL_PREFIX=./output -DCMAKE_VERBOSE_MAKEFILE=ON
run cmake --build build.d
run cmake --install build.d
run ./output/bin/ppkg
run ./output/bin/ppkg --help
run ./output/bin/ppkg -h
run ./output/bin/ppkg --version
run ./output/bin/ppkg -V
run ./output/bin/ppkg setup -v
run ./output/bin/ppkg env
run ./output/bin/ppkg env -v
run ./output/bin/ppkg integrate zsh
run ./output/bin/ppkg integrate zsh -v
run ./output/bin/ppkg update
run ./output/bin/ppkg search lib
run ./output/bin/ppkg search zip
run ./output/bin/ppkg info-available libzip
run ./output/bin/ppkg info-available libzip --yaml
run ./output/bin/ppkg info-available libzip --json
run ./output/bin/ppkg info-available libzip summary
run ./output/bin/ppkg info-available libzip version
run ./output/bin/ppkg info-available libzip license
run ./output/bin/ppkg info-available libzip web-url
run ./output/bin/ppkg info-available libzip src-url
run ./output/bin/ppkg info-available libzip src-sha
run ./output/bin/ppkg depends libzip
run ./output/bin/ppkg depends libzip -t dot
run ./output/bin/ppkg depends libzip -t box
run ./output/bin/ppkg fetch gzip
run ./output/bin/ppkg fetch gsed -v
run ./output/bin/ppkg install libzip
run ./output/bin/ppkg tree libzip
run ./output/bin/ppkg info-installed libzip --prefix
run ./output/bin/ppkg info-installed libzip --files
run ./output/bin/ppkg info-installed libzip --json
run ./output/bin/ppkg info-installed libzip --yaml
run ./output/bin/ppkg info-installed libzip builtat
run ./output/bin/ppkg info-installed libzip builtat-iso-8601
run ./output/bin/ppkg info-installed libzip builtat-rfc-3339
run ./output/bin/ppkg info-installed libzip version
run ./output/bin/ppkg pack libzip
run ./output/bin/ppkg pack libzip -t tar.gz
run ./output/bin/ppkg pack libzip -t tar.lz
run ./output/bin/ppkg pack libzip -t tar.xz
run ./output/bin/ppkg pack libzip -t tar.bz2
run ./output/bin/ppkg pack libzip -t zip
printf '%s\n' 'version: 1000' >> ~/.ppkg/repos.d/official-core/formula/libzip.yml
run ./output/bin/ppkg ls-available
run ./output/bin/ppkg ls-installed
run ./output/bin/ppkg ls-outdated
run ./output/bin/ppkg is-available libzip
run ./output/bin/ppkg is-installed libzip
run ./output/bin/ppkg is-outdated libzip
run ./output/bin/ppkg upgrade libzip
run ./output/bin/ppkg reinstall libzip
run ./output/bin/ppkg uninstall libzip
run ./output/bin/ppkg formula-repo-list
run ./output/bin/ppkg formula-repo-add my_repo https://github.com/leleliu008/ppkg-formula-repository-official-core
run ./output/bin/ppkg formula-repo-del my_repo
run ./output/bin/ppkg cleanup
#run ./output/bin/ppkg upgrade-self