Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrogallo committed Sep 22, 2022
1 parent 97a5e75 commit 3cdd364
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
mkdir -p build/${{matrix.compiler}}
cd build/${{matrix.compiler}}
$WITH_SHELL 'make -j$NJ -C extern/yamlcpp'
$WITH_SHELL 'make -j$NJ -C extern/yaml-cpp'
- name: Extern
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
README.rst
docs/manual.rst
extern/**/src
extern/**/lib
extern/**/include

*spec.yaml
cqc
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ AC_ARG_WITH(yamlcpp,
[BUILD_YAML=YES
external_cppflags_add "yaml-cpp/include/"
external_ldflags_add "yaml-cpp/lib/libyaml-cpp.a"
EXTERNAL_DEPENDENCIES="yamlcpp ${EXTERNAL_DEPENDENCIES}"])
EXTERNAL_DEPENDENCIES="yaml-cpp ${EXTERNAL_DEPENDENCIES}"])

AC_ARG_WITH([clang-check],
[AS_HELP_STRING([--with-clang-check],
Expand Down
12 changes: 5 additions & 7 deletions extern/ctf/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
CTF_GIT_REPOSITORY ?= https://gitlab.cc4s.org/cc4s/ctf.git
CPPFLAGS += $(CTF_CPPFLAGS)

CTF_BUILD_PATH ?= $(builddir)/src/$(CTF_COMMIT)/build
CTF_SRC_PATH ?= $(builddir)/src/$(CTF_COMMIT)/src

CTF_CONFIG_FLAGS = CXX="$(CXX)" \
CTF_CONFIG_FLAGS = CXX="$(MPICXX)" \
LIB_PATH="$(LDFLAGS)" \
LIBS="-lmpi" \
LIBS="${LIBS}" \
CXXFLAGS="$(CXXFLAGS)" \
--no-dynamic

Expand Down Expand Up @@ -48,13 +47,12 @@ $(CTF_STATIC_LIB): $(CTF_BUILD_PATH)/Makefile

################################################################################


ctf: $(CTF_STATIC_LIB)

clean-local:
-rm -rf include
-rm -rf lib

ctf: $(CTF_STATIC_LIB)

fetch: $(CTF_CONFIGURE)

.PHONY: ctf
.PHONY: ctf fetch
4 changes: 2 additions & 2 deletions extern/yaml-cpp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $(YAML_STATIC_LIB): $(YAML_MAKE)

################################################################################

yamlcpp: $(YAML_STATIC_LIB)
yaml-cpp: $(YAML_STATIC_LIB)

clean-local:
rm -rf $(YAML_BUILD_PATH)
Expand All @@ -57,4 +57,4 @@ clean-local:

fetch: $(YAML_CMAKE)

.PHONY: yamlcpp fetch
.PHONY: yaml-cpp fetch

0 comments on commit 3cdd364

Please sign in to comment.