libtorrent: Add support for AVX2 popcount #23
Workflow file for this run
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: rTorrent Pull Request | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'develop' | |
- 'stable' | |
jobs: | |
whatbox: | |
runs-on: [self-hosted, linux, whatbox] | |
steps: | |
- name: Checkout Pull Request | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Build Whatbox | |
run: ./.github/scripts/build_whatbox.sh | |
shell: bash | |
arm: | |
runs-on: [self-hosted, linux, ARM64] | |
steps: | |
- name: Checkout Pull Request | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Build ARM64 Debian 12 | |
run: ./.github/scripts/build.sh | |
shell: bash |