File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "image" : " mcr.microsoft.com/devcontainers/cpp:debian-12" ,
3+ "privileged" : true ,
4+ "features" : {
5+ "ghcr.io/devcontainers/features/git:1" : {},
6+ "ghcr.io/devcontainers/features/github-cli:1" : {}
7+ },
8+ "customizations" : {
9+ "vscode" : {
10+ "extensions" : [
11+ " jet-propulsion-laboratory.fpp" ,
12+ " ms-vscode.cpptools" ,
13+ " ms-vscode.cmake-tools" ,
14+ " ms-vscode.makefile-tools" ,
15+ " plorefice.devicetree" ,
16+ " nordic-semiconductor.nrf-kconfig" ,
17+ " ms-python.python"
18+ ]
19+ }
20+ },
21+ "postCreateCommand" : " make"
22+ }
Original file line number Diff line number Diff line change 9797
9898 - name : Build
9999 run : |
100- make build -W submodules -W zephyr-setup -W fprime-venv
100+ make build-ci
101101
102102 - name : Upload build artifacts
103103 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ build: submodules zephyr-setup fprime-venv generate-if-needed ## Build FPrime-Ze
5656 @echo " Building..."
5757 @$(UV ) run fprime-util build
5858
59+ .PHONY : build-ci
60+ build-ci : generate-if-needed
61+ @$(UV ) run fprime-util build
62+
5963.PHONY : test-integration
6064test-integration :
6165 @$(UV ) run pytest FprimeZephyrReference/test/int --deployment build-artifacts/zephyr/fprime-zephyr-deployment
You can’t perform that action at this time.
0 commit comments