Add --build-source flag to ncc build commands
This commit is contained in:
parent
386e137547
commit
0c837c6b54
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
|||
|
||||
- name: Build project
|
||||
run: |
|
||||
ncc build --config release --log-level debug
|
||||
ncc build --config release --build-source --log-level debug
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@ all: build
|
|||
|
||||
# Build Steps
|
||||
build:
|
||||
ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL)
|
||||
ncc build --config=$(CONFIG) --build-source --log-level $(LOG_LEVEL)
|
||||
|
||||
install:
|
||||
ncc package install --package=$(PACKAGE) --skip-dependencies --reinstall -y --log-level $(LOG_LEVEL)
|
||||
|
|
Loading…
Add table
Reference in a new issue