-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathjust.yaml
49 lines (43 loc) · 1.01 KB
/
just.yaml
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
package:
name: just
version: "1.40.0"
epoch: 0
description: "just is a handy way to save and run project-specific commands."
copyright:
- license: CC0-1.0
environment:
contents:
packages:
- build-base
- busybox
- ca-certificates-bundle
- cargo-auditable
- rust
- wolfi-base
pipeline:
- uses: git-checkout
with:
repository: https://github.com/casey/just
expected-commit: 679a9403ac29d7fc9045285453e58e2534d98d8d
tag: ${{package.version}}
- name: Configure and build
runs: |
cargo auditable build --release
mkdir -p ${{targets.destdir}}/usr/bin/
mv target/release/just ${{targets.destdir}}/usr/bin/
- uses: strip
update:
enabled: true
github:
identifier: casey/just
test:
pipeline:
- name: Version Check
runs: |
just --version
just --help
- name: Basic Functionality Test
runs: |
echo -e "default:\n touch it-worked" > justfile
just
[ -f it-worked ]