forked from LostArtefacts/TRX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile.tr1
More file actions
13 lines (12 loc) · 752 Bytes
/
justfile.tr1
File metadata and controls
13 lines (12 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
[group('tr1')]
tr1-build-win-installer: (image-win-installer "0") (_docker_run "rrdash/trx-installer" "1")
[group('tr1')]
tr1-package-linux target='release' *args: (trx-build-linux target) (_docker_run "rrdash/trx-linux" "package" "--tr-version" "1" args)
[group('tr1')]
tr1-package-win target='release' *args: (trx-build-win target) (_docker_run "rrdash/trx-win" "package" "--tr-version" "1" args)
[group('tr1')]
tr1-package-win-installer target='release' *args: \
(trx-build-win target) \
(_docker_run "rrdash/trx-win" "package" "--tr-version" "1" "-o" "tools/installer/TR1X_Installer/Resources/release.zip") \
(tr1-build-win-installer) \
(_docker_run "rrdash/trx-win" "package" "--platform" "win-installer" "--tr-version" "1" args)