add test by xed

This commit is contained in:
MITSUNARI Shigeo 2024-10-11 10:26:05 +09:00
parent 64d5779bb1
commit 903a23ba0b
2 changed files with 7 additions and 1 deletions

View file

@ -19,6 +19,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: apt -y update - run: apt -y update
- run: apt -y install g++-multilib libboost-dev make nasm yasm - run: apt -y install g++-multilib libboost-dev make nasm yasm wget
- run: make test - run: make test
- run: make -C sample CXXFLAGS="-DXBYAK_NO_EXCEPTION" - run: make -C sample CXXFLAGS="-DXBYAK_NO_EXCEPTION"
- run: |
cd test
wget https://downloadmirror.intel.com/831748/sde-external-9.44.0-2024-08-22-lin.tar.xz
tar xvf sde-external-9.44.0-2024-08-22-lin.tar.xz
env XED=sde-external-9.44.0-2024-08-22-lin/xed64 make xed_test

View file

@ -4,6 +4,7 @@ set -e
XED=${XED:=xed} XED=${XED:=xed}
CXX=${CXX:=g++} CXX=${CXX:=g++}
PYTHON=${PYTHON:=python3} PYTHON=${PYTHON:=python3}
echo $XED
if [ $# -ne 1 ]; then if [ $# -ne 1 ]; then
echo "./test_by_xed.sh <xbyak-cpp>" echo "./test_by_xed.sh <xbyak-cpp>"