Skip to content

Commit

Permalink
Missed spread change
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGriffiths committed Jan 6, 2023
1 parent 5e48250 commit f9a5dea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ include debian/opts.mk

export DPKG_GENSYMBOLS_CHECK_LEVEL = 4

# Needed for ccache to work in case the build directory changed
# (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810871)
export CCACHE_BASEDIR = $(shell pwd)

%:
dh $@ -Bbuild-$(DEB_HOST_ARCH) --parallel --fail-missing

Expand Down Expand Up @@ -60,7 +64,7 @@ endif
ifeq ($(USER) $(DEB_HOST_ARCH),buildd riscv64)
COMMON_CONFIGURE_OPTIONS += -DMIR_RUN_MIRAL_TESTS=OFF
# Disable unit tests on Launchpad riscv64 jammy kinetic
ifneq ($(filter jammy kinetic,$(DEB_DISTRIBUTION)),)
ifneq ($(filter jammy kinetic lunar,$(DEB_DISTRIBUTION)),)
COMMON_CONFIGURE_OPTIONS += -DMIR_RUN_UNIT_TESTS=OFF
endif
endif
Expand Down
3 changes: 3 additions & 0 deletions spread.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ environment:
NOCHECK: ""
NOCHECK/asan,tsan,ubsan,asan_clang,tsan_clang,ubsan_clang: nocheck
CTEST_OUTPUT_ON_FAILURE: 1
CCACHE_DIR: /root/.ccache
# Needed for precompiled headers (https://ccache.dev/manual/latest.html#_precompiled_headers)
CCACHE_SLOPPINESS: time_macros,pch_defines,include_file_mtime,include_file_ctime

prepare: |
# NOTE: This part of the code needs to be in spread.yaml as it runs before
Expand Down

0 comments on commit f9a5dea

Please sign in to comment.