Skip to content

Commit

Permalink
one additional job
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasK committed Oct 4, 2023
1 parent 756b209 commit 1d235d9
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,32 +45,34 @@ jobs:
python -c "from atlas import utils"
- name: Dryrun
run: |
test/dryrun.sh
run: test/dryrun.sh

- name: Test init many samples
run: ./test/test_init_many_samples.sh
### Full test job

- name: Clone Example Data Repository
run: git clone https://github.com/metagenome-atlas/example_data.git



#### start test

- name: Run Test
run: |
chmod +x test/test_ci.sh
test/test_ci.sh --resources mem=$MEM java_mem=$MEM --jobs=$N_THREADS --restart-times=2
- name: Store Logs
uses: actions/upload-artifact@v2
with:
name: logs
path: test_ci/logs

- name: Store Sample Logs
uses: actions/upload-artifact@v2
with:
name: sample_logs
path: test_ci/Streptococcus/logs
### Full test job
full-test:
needs: build-and-dryrun
steps:
steps:
- name: Clone Example Data Repository
run: git clone https://github.com/metagenome-atlas/example_data.git
- name: Run Test
run: |
ls -l
ls -l example_data
chmod +x test/test_ci.sh
test/test_ci.sh --resources mem=$MEM java_mem=$MEM --jobs=$N_THREADS --restart-times=2
- name: Store Logs
uses: actions/upload-artifact@v2
with:
name: logs
path: test_ci/logs

- name: Store Sample Logs
uses: actions/upload-artifact@v2
with:
name: sample_logs
path: test_ci/Streptococcus/logs

0 comments on commit 1d235d9

Please sign in to comment.