Skip to content

Commit b6615b0

Browse files
committed
Fix the GitHub Actions and Makefile
* fix a silly mistake in the makefile * subsequently fix the ymls
1 parent 6664b99 commit b6615b0

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/WorkflowBuildFromDev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '21'
2727

2828
- name: Run Makefile to compile program
29-
run: make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29+
run: make project=Cataphract all
3030

3131
- name: Upload the Build Artefacts
3232
uses: actions/upload-artifact@v4

.github/workflows/WorkflowBuildFromMain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '21'
2727

2828
- name: Run Makefile to compile program
29-
run: make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29+
run: make project=Cataphract all
3030

3131
- name: Upload the Build Artefacts
3232
uses: actions/upload-artifact@v4

Tools/GitHub-Automation/WorkflowBuildFromDev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '21'
2727

2828
- name: Run Makefile to compile program
29-
run: make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29+
run: make project=Cataphract all
3030

3131
- name: Upload the Build Artefacts
3232
uses: actions/upload-artifact@v4

Tools/GitHub-Automation/WorkflowBuildFromMain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '21'
2727

2828
- name: Run Makefile to compile program
29-
run: make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29+
run: make project=Cataphract all
3030

3131
- name: Upload the Build Artefacts
3232
uses: actions/upload-artifact@v4

makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ BIN_CLASSPATH = ./Binaries
3333
.PHONY: all setup kernel launcher docs sign clean
3434

3535
# Build steps
36-
all: setup kernel launcher docs sign
36+
all: setup kernel launcher sign
37+
38+
# Super Build (includes documentations)
39+
super: setup kernel launcher sign docs
3740

3841
# Preliminary setup
3942
setup:
@@ -64,7 +67,7 @@ setup:
6467
@echo ""
6568

6669
# Compilation targets
67-
kernel: setup launcher sign
70+
kernel: setup
6871
@echo "[*] Compiling Program..."
6972
@echo ""
7073
javac -cp $(CLASSPATH) -d $(BIN_DIR) $(SRC_DIR)/$(PROJECT_NAME)/Core/Loader.java

0 commit comments

Comments
 (0)