Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modified for the change of the customized repo targets for hubValidat… #92

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/after-validate-submission.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@ jobs:
- name: Install hubViz
run: |
Rscript -e 'install.packages("remotes")'
Rscript -e 'remotes::install_github("Infectious-Disease-Modeling-Hubs/hubVis")'
Rscript -e 'remotes::install_github("hubverse-org/hubVis")'
- name: Install hubUtils
run: |
Rscript -e 'remotes::install_github("kjsato/hubUtils@enhancement/v3-utils", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubUtils@main-mr_schema", upgrade = "never")'
- name: Install hubEnsembles
run: |
Rscript -e 'remotes::install_github("Infectious-Disease-Modeling-Hubs/hubEnsembles")'
Rscript -e 'remotes::install_github("hubverse-org/hubEnsembles")'
- name: Install hubData
run: |
Rscript -e 'remotes::install_github("kjsato/hubData@feature/handle-samples", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubData@main-mr_schema", upgrade = "never")'
- name: Check if RETRO files are present
id: check_files
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate-submission.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ jobs:
- name: Install hubUtils from specific branch
run: |
Rscript -e 'install.packages("remotes")'
Rscript -e 'remotes::install_github("kjsato/hubUtils@enhancement/v3-utils", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubUtils@main-mr_schema", upgrade = "never")'
- name: Install hubData from specific branch
run: |
Rscript -e 'remotes::install_github("kjsato/hubData@feature/handle-samples", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubData@main-mr_schema", upgrade = "never")'
- name: Install hubAdmin from specific branch
run: |
Rscript -e 'remotes::install_github("kjsato/hubAdmin@feature/sample-support", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubAdmin@main-mr_schema", upgrade = "never")'
- name: Install HubValidations
run: |
Rscript -e 'remotes::install_github("kjsato/hubValidations@patch4conversion_origin_date", upgrade = "never")'
Rscript -e 'remotes::install_github("kjsato/hubValidations@main-mr_schema-conv_origin_date", upgrade = "never")'

- name: Run validations
env:
Expand Down
Loading