externals: Update xbyak to v6.68

Merge commit 'f6fdb5f55a88f73ef7bef45f50cf5878ceec9781'
This commit is contained in:
Merry
2022-12-30 23:05:02 +00:00
30 changed files with 589 additions and 155 deletions

View File

@@ -1,13 +1,21 @@
name: test
on: [push]
defaults:
run:
shell: sh
permissions:
contents: read
jobs:
build:
name: test
test:
runs-on: ubuntu-latest
container:
image: debian:testing
steps:
- uses: actions/checkout@v2
- run: sudo apt update
- run: sudo apt install nasm yasm g++-multilib tcsh
- uses: actions/checkout@v3
- run: apt -y update
- run: apt -y install g++-multilib libboost-dev make nasm yasm
- run: make test
- run: make -C sample CXXFLAGS="-DXBYAK_NO_EXCEPTION"