use xed 2024.11.04 and tests were reinstated for AVX10.2 rev. 2 #386
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- '*' | |
defaults: | |
run: | |
shell: sh | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:testing | |
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: 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 | |
wget https://github.com/herumi/xed-bin/raw/refs/heads/main/xed | |
chmod +x ./xed | |
./xed -version | |
env XED=./xed make xed_test |