Skip to content

Commit

Permalink
Github-hosted tests added
Browse files Browse the repository at this point in the history
  • Loading branch information
agudys authored Oct 14, 2024
1 parent 4e2d935 commit d80c26a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: GitHub Actions CI
name: Build and tests

on:
push:
Expand All @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
machine: [ubuntu-latest, macOS-12]
compiler: [g++]
compiler: [12]
runs-on: ['${{ matrix.machine }}']

steps:
Expand All @@ -27,11 +27,14 @@ jobs:
- name: get tags
run: |
cd ./libs/igraph
git fetch --tags origin
git fetch --prune --unshallow
echo exit code $?
git tag --list
continue-on-error: true

- name: make
run: |
make -j32 CXX=${{matrix.compiler}}
make -j32 CXX=g++-${{matrix.compiler}} CC=gcc-${{matrix.compiler}}
cp ./clusty ./clusty-${{matrix.compiler}}
make clean
- name: tar artifacts
Expand All @@ -50,7 +53,7 @@ jobs:
fail-fast: false
matrix:
machine: [ubuntu-latest, macOS-12]
compiler: [g++]
compiler: [12]
algo: [single, complete]
threshold: [95, 70]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Bioconda downloads](https://img.shields.io/conda/dn/bioconda/clusty.svg?style=flag&label=Bioconda%20downloads)](https://anaconda.org/bioconda/clusty)
[![GitHub downloads](https://img.shields.io/github/downloads/refresh-bio/clusty/total.svg?style=flag&label=GitHub%20downloads)](https://github.com/refresh-bio/clusty/releases)
[![Build and tests](../../workflows/GitHub%20Actions%20CI/badge.svg)](../../actions/workflows/main.yml)
[![Build and tests](../../workflows/Build%20and%20tests/badge.svg)](../../actions/workflows/main.yml)
[![License](https://anaconda.org/bioconda/famsa/badges/license.svg)](https://www.gnu.org/licenses/gpl-3.0.html)

![x86-64](https://img.shields.io/static/v1?label=%E2%80%8B&message=x86-64&color=yellow&logo=PCGamingWiki&logoColor=white)
Expand Down

0 comments on commit d80c26a

Please sign in to comment.