-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from hgb-bin-proteomics/develop
add crossplatform binaries
- Loading branch information
Showing
396 changed files
with
647,993 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.