Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
go install github.com/goreleaser/nfpm/v2/cmd/nfpm@latest
go install github.com/goreleaser/goreleaser/v2@latest
- name: Build package (for testing)
run: just release-local
run: just build-local

#
# Test
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ To build the project use the following steps:
3. Build the packages

```sh
just release-local
just build-local
```

The built packages are created under the `./dist` folder.
Expand All @@ -188,7 +188,7 @@ To run the tests you will need to have python3 >> 3.9 installed on your syste
2. Build the software management plugin

```sh
just release-local
just build-local
```

3. Build the test images
Expand Down
7 changes: 6 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ release *ARGS='':
docker context use default
goreleaser release --clean --auto-snapshot {{ARGS}}

# install docker buildx and allow multi-arch builds
build-setup:
docker buildx install
docker run --privileged --rm tonistiigi/binfmt --install all

# Build a release locally (for testing the release artifacts)
release-local:
build-local:
just -f "{{justfile()}}" release --snapshot

# Install python virtual environment
Expand Down
Loading