Skip to content

Commit

Permalink
deactivated linux build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
stschiff committed Mar 6, 2024
1 parent bb30aa6 commit 6571714
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@ on:
types: [created]

jobs:
build-on-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Build Docker image
run: docker build -t linux -f Dockerfile.linux .

- name: Create container
run: docker create --name linuxcontainer linux

- name: Copy executable
run: |
for TOOL in genoStats pileupCaller vcf2eigenstrat; do
docker cp linuxcontainer:/root/.local/bin/$TOOL $TOOL-linux
done
- name: update-release
run: |
for TOOL in genoStats pileupCaller vcf2eigenstrat; do
bash .github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-linux
done
# build-on-centos:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v2

# - name: Build Docker image
# run: docker build -t linux -f Dockerfile.linux .

# - name: Create container
# run: docker create --name linuxcontainer linux

# - name: Copy executable
# run: |
# for TOOL in genoStats pileupCaller vcf2eigenstrat; do
# docker cp linuxcontainer:/root/.local/bin/$TOOL $TOOL-linux
# done

# - name: update-release
# run: |
# for TOOL in genoStats pileupCaller vcf2eigenstrat; do
# bash .github/workflows/upload-github-release-asset.sh github_api_token=${{ secrets.GITHUB_TOKEN }} owner=stschiff repo=sequenceTools tag=$(basename $GITHUB_REF) filename=$TOOL-linux
# done
build-on-mac:
runs-on: macos-latest
steps:
Expand Down

0 comments on commit 6571714

Please sign in to comment.