Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedihafez committed Jul 24, 2024
1 parent 27c418c commit 4cc7d90
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ jobs:
sudo apt-get install -y libhts-dev libgsl-dev
## Install htslib on macOS and run only in macos-latest or macos-latest-xlarge
- name : Install htslib macOS
- name : Install htslib gsl macOS
if: matrix.os == 'macos-latest' || matrix.os == 'macos-latest-xlarge'
run: |
brew install htslib
brew install gsl
- name: Configure CMake
Expand Down Expand Up @@ -107,9 +108,10 @@ jobs:
# Name of the artifact. This is the name that will be displayed in the GitHub Actions UI.
# get the name of the release tarball

name: release
name: mstatspop-release
path: ${{ steps.strings.outputs.build-output-dir }}/*.tar.gz

- name: check release tarball
run: ls -l ${{ github.workspace }}/mstatspop-release/
- name: Test
working-directory: ${{ steps.strings.outputs.build-output-dir }}
# Execute tests defined by the CMake configuration. Note that --build-config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
Expand All @@ -128,11 +130,11 @@ jobs:
- name: Download release tarball
uses: actions/download-artifact@v3
with:
name: release
path: ${{ github.workspace }}/release
name: mstatspop-release
path: ${{ github.workspace }}/mstatspop-release

- name: check release tarball
run: ls -l ${{ github.workspace }}/release/
run: ls -l ${{ github.workspace }}/mstatspop-release/

- name: version
run: |
Expand Down

0 comments on commit 4cc7d90

Please sign in to comment.