mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
add test by xed
This commit is contained in:
parent
64d5779bb1
commit
903a23ba0b
2 changed files with 7 additions and 1 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -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>"
|
||||||
|
|
Loading…
Reference in a new issue