-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJustfile
More file actions
57 lines (44 loc) · 1.13 KB
/
Justfile
File metadata and controls
57 lines (44 loc) · 1.13 KB
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
set dotenv-load := true
default:
@just --list --unsorted
setup:
@echo "Setting up development environment..."
distrobox assemble create
distrobox enter first-setup
enter:
@distrobox enter first-setup
build:
@echo "Building the project..."
meson setup build
meson compile -C build
build-deb:
@echo "Building Debian package..."
dpkg-buildpackage -us -uc -b
clean:
@echo "Cleaning build artifacts..."
dpkg-buildpackage -Tclean
changelog:
#!/usr/bin/env bash
set -euo pipefail
VERSION=$(svu next)
echo "Generating changelog for ${VERSION}..."
gchlog --write
bump: changelog
#!/usr/bin/env bash
set -euo pipefail
VERSION=$(svu next)
echo "Bumping to v${VERSION}..."
git add -A
git commit -m "chore: release ${VERSION}"
git push origin main
git tag "${VERSION}"
git push origin "${VERSION}"
run:
@echo "Running the application..."
python3 test.py -d -r
run-configure:
@echo "Running the application in configuration mode..."
python3 test.py -d -c
run-install:
@echo "Running in install mode..."
python3 test.py -d -i