Skip to content

Commit

Permalink
Release 0.0.4
Browse files Browse the repository at this point in the history
Bug fix release:
  * No more ALL_CAPS template parameters
  * Fix duplicate macros in AVX512 detection
  * More strict warnings handling in test
  * Fix Circle CI
  • Loading branch information
jfalcou committed Sep 29, 2020
2 parents 8ab8e86 + e36249b commit 92d3666
Show file tree
Hide file tree
Showing 13 changed files with 180 additions and 233 deletions.
27 changes: 3 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,18 @@ docker_gcc: &docker_gcc
docker:
- image: compilaction/gcc-dev:latest
environment:
COMPILER: g++-9
COMPILER: g++
docker_clang: &docker_clang
docker:
- image: compilaction/clang-dev:latest
environment:
COMPILER: clang++-9
docker_ppc64: &docker_ppc64
docker:
- image: compilaction/gcc-dev:latest
environment:
RUN_COMMAND: qemu-ppc64
COMPILER: powerpc64-linux-gnu-g++-9
COMPILER: clang++
docker_aarch64: &docker_aarch64
docker:
- image: compilaction/gcc-dev:latest
environment:
RUN_COMMAND: qemu-aarch64
COMPILER: aarch64-linux-gnu-g++-9
COMPILER: aarch64-linux-gnu-g++


##==================================================================================================
Expand All @@ -45,9 +39,6 @@ config_clang_x86: &config_clang_x86
<<: *docker_clang
config_aarch64: &config_aarch64
<<: *docker_aarch64
config_gcc_ppc64: &config_gcc_ppc64
<<: *docker_ppc64

##==================================================================================================
## Jobs list
##==================================================================================================
Expand Down Expand Up @@ -106,17 +97,6 @@ jobs:
name: Running Basic Tests - AARCH64 NEON
command: VARIANT="aarch64" OPTIONS="-O3 -Wno-psabi" . .circleci/run.sh

ppc64:
<<: *config_gcc_ppc64
steps:
- checkout
- run:
name: Running Basic Tests - PPC64
command: VARIANT="vsx" OPTIONS="-O3" . .circleci/run.sh
- run:
name: Running Basic Tests - PPC64 VSX
command: VARIANT="vsx" OPTIONS="-O3 -mvsx -mpower8-vector" . .circleci/run.sh

workflows:
version: 2
build_and_test:
Expand All @@ -127,4 +107,3 @@ workflows:
- gcc_amd64
- clang_amd64
- arm_aarch64
- ppc64
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
# Potential local build repository
*build*/
Testing/

.vscode/
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ add_custom_command(OUTPUT spy.hpp
-I include
-o ${CMAKE_CURRENT_SOURCE_DIR}/include/spy.hpp
--include-match spy/*
--guard-match .*_HPP_INLUDED
--guard-match .*_HPP_INCLUDED

WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
COMMENT "Generating standalone headers"
Expand Down
Loading

0 comments on commit 92d3666

Please sign in to comment.