mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-25 09:45:02 +00:00
[Faster CI] Make CI not run CC_CHECK (#1686)
* Make CI not run CC_CHECK * I put it on the wrong step bruh * Introduce RUN_CC_CHECK instead (like MM)
This commit is contained in:
parent
e33d76568c
commit
64dd475a3a
2 changed files with 10 additions and 2 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -45,7 +45,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'make -j'
|
sh 'make -j RUN_CC_CHECK=0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Report Progress') {
|
stage('Report Progress') {
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -21,6 +21,8 @@ COMPILER := ido
|
||||||
VERSION := gc-eu-mq-dbg
|
VERSION := gc-eu-mq-dbg
|
||||||
# Number of threads to extract and compress with
|
# Number of threads to extract and compress with
|
||||||
N_THREADS := $(shell nproc)
|
N_THREADS := $(shell nproc)
|
||||||
|
# Check code syntax with host compiler
|
||||||
|
RUN_CC_CHECK := 1
|
||||||
|
|
||||||
CFLAGS ?=
|
CFLAGS ?=
|
||||||
CPPFLAGS ?=
|
CPPFLAGS ?=
|
||||||
|
@ -173,7 +175,7 @@ ifeq ($(COMPILER),ido)
|
||||||
CC_CHECK += -m32
|
CC_CHECK += -m32
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
CC_CHECK = @:
|
RUN_CC_CHECK := 0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
OBJDUMP_FLAGS := -d -r -z -Mreg-names=32
|
OBJDUMP_FLAGS := -d -r -z -Mreg-names=32
|
||||||
|
@ -456,18 +458,24 @@ $(BUILD_DIR)/src/code/z_game_dlftbls.o: include/tables/gamestate_table.h
|
||||||
$(BUILD_DIR)/src/code/z_scene_table.o: include/tables/scene_table.h include/tables/entrance_table.h
|
$(BUILD_DIR)/src/code/z_scene_table.o: include/tables/scene_table.h include/tables/entrance_table.h
|
||||||
|
|
||||||
$(BUILD_DIR)/src/%.o: src/%.c
|
$(BUILD_DIR)/src/%.o: src/%.c
|
||||||
|
ifneq ($(RUN_CC_CHECK),0)
|
||||||
$(CC_CHECK) $<
|
$(CC_CHECK) $<
|
||||||
|
endif
|
||||||
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
||||||
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
||||||
|
|
||||||
$(BUILD_DIR)/src/libultra/libc/ll.o: src/libultra/libc/ll.c
|
$(BUILD_DIR)/src/libultra/libc/ll.o: src/libultra/libc/ll.c
|
||||||
|
ifneq ($(RUN_CC_CHECK),0)
|
||||||
$(CC_CHECK) $<
|
$(CC_CHECK) $<
|
||||||
|
endif
|
||||||
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
||||||
$(PYTHON) tools/set_o32abi_bit.py $@
|
$(PYTHON) tools/set_o32abi_bit.py $@
|
||||||
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
||||||
|
|
||||||
$(BUILD_DIR)/src/libultra/libc/llcvt.o: src/libultra/libc/llcvt.c
|
$(BUILD_DIR)/src/libultra/libc/llcvt.o: src/libultra/libc/llcvt.c
|
||||||
|
ifneq ($(RUN_CC_CHECK),0)
|
||||||
$(CC_CHECK) $<
|
$(CC_CHECK) $<
|
||||||
|
endif
|
||||||
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
$(CC) -c $(CFLAGS) $(MIPS_VERSION) $(OPTFLAGS) -o $@ $<
|
||||||
$(PYTHON) tools/set_o32abi_bit.py $@
|
$(PYTHON) tools/set_o32abi_bit.py $@
|
||||||
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
@$(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.s)
|
||||||
|
|
Loading…
Reference in a new issue