8000 r1271: warn about @HD in -H · lh3/bwa@3c99c2b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

r1271: warn about @HD in -H #64

r1271: warn about @HD in -H

r1271: warn about @HD in -H #64

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]
steps:
- name: Checkout bwa
uses: actions/checkout@v3
- name: Compile with ${{ matrix.compiler }}
run: make CC=${{ matrix.compiler }}
# build-aarch64:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# compiler: [gcc, clang]
#
# steps:
# - name: Checkout bwa
# uses: actions/checkout@v3
#
# - name: Compile with ${{ matrix.compiler }}
# uses: uraimo/run-on-arch-action@v2
# with:
# arch: aarch64
# distro: ubuntu20.04
# githubToken: ${{ github.token }}
# dockerRunArgs: |
# --volume "${PWD}:/bwa"
# install: |
# apt-get update -q -y
# apt-get install -q -y make ${{ matrix.compiler }} zlib1g-dev
# run: |
# cd /bwa
# make CC=${{ matrix.compiler }}
0