Skip to content

Commit

Permalink
Merge pull request #31 from hgb-bin-proteomics/develop
Browse files Browse the repository at this point in the history
add crossplatform binaries
  • Loading branch information
michabirklbauer authored Apr 16, 2024
2 parents e6cefed + a9a2324 commit 926b0fe
Show file tree
Hide file tree
Showing 396 changed files with 647,993 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test for macOS

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Test-for-macOS:
runs-on: macos-14
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6'
- name: Copy test data
run: |
cp tests/data/* exe/macos_arm/uncompressed
- name: Test
run: |
cd exe/macos_arm/uncompressed
chmod +x CandidateSearch
./CandidateSearch test_spectra.mgf test_database.fasta test_settings.txt
- name: Check result
run: |
cd exe/macos_arm/uncompressed
head test_spectra.mgf_results.csv
33 changes: 33 additions & 0 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test for Ubuntu 22.04

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Test-for-Ubuntu:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6'
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y g++
- name: Copy test data
run: |
cp tests/data/* exe/ubuntu_x64/uncompressed
- name: Test
run: |
cd exe/ubuntu_x64/uncompressed
chmod +x CandidateSearch
./CandidateSearch test_spectra.mgf test_database.fasta test_settings.txt
- name: Check result
run: |
cd exe/ubuntu_x64/uncompressed
head test_spectra.mgf_results.csv
29 changes: 29 additions & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test for Windows

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
Test-for-Windows:
runs-on: windows-2022
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6'
- name: Copy test data
run: |
copy tests\data\* exe\windows_x64\uncompressed
- name: Test
run: |
cd exe/windows_x64/uncompressed
./CandidateSearch test_spectra.mgf test_database.fasta test_settings.txt
- name: Check result
run: |
cd exe/windows_x64/uncompressed
Get-Content test_spectra.mgf_results.csv -TotalCount 10
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = CandidateSearch
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.1.1
PROJECT_NUMBER = 1.1.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
Binary file removed exe/CandidateSearch.dll
Binary file not shown.
Binary file added exe/macos_arm/compressed/macos_arm.zip
Binary file not shown.
Binary file added exe/macos_arm/uncompressed/CandidateSearch
Binary file not shown.
Loading

0 comments on commit 926b0fe

Please sign in to comment.