https://github.com/xpack-dev-tools/test-next-xpack
https://github.com/xpack-dev-tools/test-next-xpack
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/xpack-dev-tools/test-next-xpack
- Owner: xpack-dev-tools
- License: mit
- Created: 2021-12-18T21:54:03.000Z (over 4 years ago)
- Default Branch: xpack-develop
- Last Pushed: 2024-11-14T19:35:02.000Z (over 1 year ago)
- Last Synced: 2024-12-27T08:44:11.540Z (over 1 year ago)
- Language: Shell
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-BUILD.md
- License: LICENSE
Awesome Lists containing this project
README
# How to build the xPack Test Next binaries
TBD
## Download the build scripts repo
The build scripts are available in the `scripts` folder of the
[`xpack-dev-tools/test-next-xpack`](https://github.com/xpack-dev-tools/test-next-xpack)
Git repo.
To download them, issue the following commands:
```sh
rm -rf ${HOME}/Work/test-next-xpack.git; \
git clone \
https://github.com/xpack-dev-tools/test-next-xpack.git \
${HOME}/Work/test-next-xpack.git; \
git -C ${HOME}/Work/test-next-xpack.git submodule update --init --recursive
```
> Note: the repository uses submodules; for a successful build it is
> mandatory to recurse the submodules.
For development purposes, clone the `xpack-develop`
branch:
```sh
rm -rf ${HOME}/Work/test-next-xpack.git; \
git clone \
--branch xpack-develop \
https://github.com/xpack-dev-tools/test-next-xpack.git \
${HOME}/Work/test-next-xpack.git; \
git -C ${HOME}/Work/test-next-xpack.git submodule update --init --recursive
```
## Install dependencies
```sh
cd ${HOME}/Work/test-next-xpack.git
xpm install
```
## Build
```console
xpm run build --config release
xpm run build-develop --config release
```
```console
xpm run build --config debug
```
## Clean
```console
xpm run clean --config release
```
```console
xpm run clean --config debug
```