Merge commit '0a097849af1bcd979ff4b430a03971f16822cbcb' as 'external/xbyak'
This commit is contained in:
32
external/xbyak/.github/CONTRIBUTING.md
vendored
Normal file
32
external/xbyak/.github/CONTRIBUTING.md
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# Contributing to Xbyak
|
||||
|
||||
Thank you for considering contributing to the Xbyak project. This document provides guidelines on how to contribute.
|
||||
|
||||
## Bug Reports and Feedback
|
||||
|
||||
If you find a bug, have a feature request, or have questions, please open an issue. Include the following information:
|
||||
|
||||
- Detailed description of the problem
|
||||
- Steps to reproduce
|
||||
- Expected behavior
|
||||
- Actual behavior
|
||||
- Environment details (OS, compiler version, etc.)
|
||||
|
||||
## Creating Pull Requests
|
||||
|
||||
If you want to add features or make fixes, follow these steps to create a pull request:
|
||||
|
||||
1. Fork the repository
|
||||
2. Create a new branch: `git checkout -b my-feature-branch`
|
||||
3. Make your changes
|
||||
4. Run tests and ensure all tests pass
|
||||
5. Commit your changes: `git commit -am 'Add new feature'`
|
||||
6. Push the branch: `git push origin my-feature-branch`
|
||||
7. Create a pull request
|
||||
|
||||
When creating a pull request, clearly describe the changes and include any related issue numbers.
|
||||
|
||||
## License
|
||||
|
||||
Xbyak is released under the BSD-3-Clause License. Any code contributions will be licensed under the same license.
|
||||
|
||||
1
external/xbyak/.github/FUNDING.yml
vendored
Normal file
1
external/xbyak/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
github: herumi
|
||||
32
external/xbyak/.github/workflows/main.yml
vendored
Normal file
32
external/xbyak/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
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 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
|
||||
wget https://github.com/herumi/xed-bin/raw/refs/heads/main/xed.tgz
|
||||
tar xvf xed.tgz
|
||||
./xed -version
|
||||
env XED=./xed make xed_test
|
||||
Reference in New Issue
Block a user