Skip to content

Commit 86815eb

Browse files
authored
Merge pull request #1 from martenson/test_lint
adjustments to makefile, test linting workflow on PR
2 parents 12e38d1 + 92694dc commit 86815eb

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Tool linting
22

33
on:
4-
# push:
5-
# branches: [ main ]
64
pull_request:
75
branches: [ main ]
86
workflow_dispatch:
@@ -31,4 +29,6 @@ jobs:
3129
python -m pip install --upgrade pip
3230
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3331
- name: Perform linting
34-
run: make pr_check
32+
run: |
33+
make INSTANCE=galaxy-qa1.galaxy.cloud.e-infra.cz lint
34+
make INSTANCE=usegalaxy.cz lint

Makefile

+3-6
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ update-trusted: ## Run the update script for a subset of repos defined by the O
2222
update-all: ## Run the update script for all repos
2323
find ./$(INSTANCE) -name '*.yml' | grep '^\./[^/]*/' | xargs -n 1 -P 8 python scripts/update_tool.py
2424

25-
# shed-tools install --install_resolver_dependencies --toolsfile $< --galaxy $(GALAXY_SERVER) --api_key $(GALAXY_API_KEY) 2>&1 | tee -a report.log
25+
install: ## Run the Ephemeris command to install all repos and revisions that are missing from a given INSTANCE
26+
find ./$(INSTANCE) -name '*.yml' | grep '^\./[^/]*/' | xargs -n 1 -P 1 -I {} shed-tools install --toolsfile {} --galaxy $(INSTANCE) --api_key $(GALAXY_API_KEY) --skip_install_resolver_dependencies
2627

27-
# shed-tools install --toolsfile $< --galaxy $(GALAXY_SERVER) --api_key $(GALAXY_API_KEY)
28-
29-
# shed-tools install -g "$URL" -t tool_list.yaml.lock --log_level ERROR --log-file "$LOG"
30-
31-
.PHONY: fix lint help update-trusted update-all
28+
.PHONY: fix lint help update-trusted update-all install

galaxy-qa1.galaxy.cloud.e-infra.cz/nanopore.yml.lock

+7
Original file line numberDiff line numberDiff line change
@@ -66,42 +66,49 @@ tools:
6666
owner: iuc
6767
revisions:
6868
- 543cbeef3949
69+
- a2899db6bd6e
6970
tool_panel_section_id: nanopore
7071
tool_panel_section_label: Nanopore
7172
- name: poretools_squiggle
7273
owner: iuc
7374
revisions:
75+
- 26e6c9362b7b
7476
- ce8af9373061
7577
tool_panel_section_id: nanopore
7678
tool_panel_section_label: Nanopore
7779
- name: poretools_occupancy
7880
owner: iuc
7981
revisions:
82+
- 0433aad600e9
8083
- 336791b5665f
8184
tool_panel_section_id: nanopore
8285
tool_panel_section_label: Nanopore
8386
- name: poretools_hist
8487
owner: iuc
8588
revisions:
8689
- 47936349f3e9
90+
- d1805f9c4c82
8791
tool_panel_section_id: nanopore
8892
tool_panel_section_label: Nanopore
8993
- name: poretools_yield_plot
9094
owner: iuc
9195
revisions:
9296
- 64a83664b814
97+
- c5c5a3e84989
9398
tool_panel_section_id: nanopore
9499
tool_panel_section_label: Nanopore
95100
- name: poretools_qualpos
96101
owner: iuc
97102
revisions:
98103
- 2e22ebec211a
104+
- 626b6c2be5c2
99105
tool_panel_section_id: nanopore
100106
tool_panel_section_label: Nanopore
101107
- name: poretools_events
102108
owner: iuc
103109
revisions:
104110
- 1d835c691480
111+
- daf8518d243a
105112
tool_panel_section_id: nanopore
106113
tool_panel_section_label: Nanopore
107114
- name: medaka_variant

0 commit comments

Comments
 (0)