diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-11-11 15:05:12 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-11-11 15:48:07 +0900 |
commit | c6ecb7782332d865e7629aafc843c3c63f3e9a5e (patch) | |
tree | 6944ccb27158e11ceef8c5b28b5041f820f22a1d /.github/workflows/main.yml | |
parent | a05a63f870ec3a7c4e8ad8b3faef1ed57ee6bbe7 (diff) | |
download | xbyak-c6ecb7782332d865e7629aafc843c3c63f3e9a5e.tar.gz xbyak-c6ecb7782332d865e7629aafc843c3c63f3e9a5e.zip |
use xed 2024.11.04 and tests were reinstated for AVX10.2 rev. 2
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3d520a3..0d335ef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,11 +19,14 @@ jobs: steps: - uses: actions/checkout@v4 - run: apt -y update - - run: apt -y install g++-multilib libboost-dev make nasm yasm wget xz-utils python3 + - run: apt -y install g++-multilib libboost-dev make nasm yasm wget python3 #xz-utils - run: make test - 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 + #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 + wget https://github.com/herumi/xed-bin/raw/refs/heads/main/xed + chmod +x ./xed + ./xed -version + env XED=./xed make xed_test |