generated from fastai/nbdev_template
-
Notifications
You must be signed in to change notification settings - Fork 31
61 lines (59 loc) · 2.51 KB
/
performance_test_installer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Performance test pyinstaller
env:
TMP_FOLDER: E:/test_dir/
on:
workflow_dispatch:
jobs:
Performance_test_pyinstaller:
runs-on: self-hosted
timeout-minutes: 1440
steps:
- uses: actions/checkout@v2
- name: Freezing code
run: |
remove-item -path "C:\Users\admin\.conda\envs\alphapeptinstaller" -Force -Recurse -ErrorAction SilentlyContinue
conda deactivate
cd installer\one_click_windows
.\create_installer_windows.bat
- name: Install package
run: |
conda activate alphapeptinstaller
pip install pymongo
pip install dnspython
pip install wget
- name: Run Alphapept on Thermo (HeLa_Thermo_Win)
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" thermo_hela "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on Thermo (HeLa_Thermo_Win_LargeFasta)
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" thermo_hela_large_fasta "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on Thermo (HeLa_Thermo_Win_Modifications)
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" thermo_hela_modifications "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on Bruker (HeLa_Bruker_Win)
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" bruker_hela "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on PXD006109
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" PXD006109 "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on PXD010012
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" PXD010012 "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on PXD015087
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" PXD015087 "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on PXD015087 w. Matching
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" PXD015087_matching "${{ secrets.MONGODB_PW }}"
- name: Run Alphapept on PXD015087 w. Matching + Fractions
run: |
conda activate alphapeptinstaller
python test_ci.py "${{ env.TMP_FOLDER }}" PXD015087_matching_fraction "${{ secrets.MONGODB_PW }}"