Merge branch 'dev' #377
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 | |
env XED=sde-external-9.44.0-2024-08-22-lin/xed64 make xed_test |