-
Notifications
You must be signed in to change notification settings - Fork 124
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 #724 from OHDSI/develop
develop merge for release 1.7.2
- Loading branch information
Showing
125 changed files
with
3,644 additions
and
1,903 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 |
---|---|---|
@@ -1,3 +1,10 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^.github | ||
^docs$ | ||
^extras$ | ||
compare_versions | ||
deploy.sh | ||
_pkgdown.yml | ||
^CRAN-SUBMISSION$ | ||
^cran-comments\.md$ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,167 @@ | ||
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. | ||
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
name: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: macOS-latest, r: 'release'} | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GH_TOKEN }} | ||
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | ||
RSPM: ${{ matrix.config.rspm }} | ||
CDM5_ORACLE_CDM54_SCHEMA: ${{ secrets.CDM5_ORACLE_CDM54_SCHEMA }} | ||
CDM5_ORACLE_OHDSI_SCHEMA: ${{ secrets.CDM5_ORACLE_OHDSI_SCHEMA }} | ||
CDM5_ORACLE_PASSWORD: ${{ secrets.CDM5_ORACLE_PASSWORD }} | ||
CDM5_ORACLE_SERVER: ${{ secrets.CDM5_ORACLE_SERVER }} | ||
CDM5_ORACLE_USER: ${{ secrets.CDM5_ORACLE_USER }} | ||
CDM5_POSTGRESQL_CDM54_SCHEMA: ${{ secrets.CDM5_POSTGRESQL_CDM54_SCHEMA }} | ||
CDM5_POSTGRESQL_OHDSI_SCHEMA: ${{ secrets.CDM5_POSTGRESQL_OHDSI_SCHEMA }} | ||
CDM5_POSTGRESQL_PASSWORD: ${{ secrets.CDM5_POSTGRESQL_PASSWORD }} | ||
CDM5_POSTGRESQL_SERVER: ${{ secrets.CDM5_POSTGRESQL_SERVER }} | ||
CDM5_POSTGRESQL_USER: ${{ secrets.CDM5_POSTGRESQL_USER }} | ||
CDM5_SQL_SERVER_CDM54_SCHEMA: ${{ secrets.CDM5_SQL_SERVER_CDM54_SCHEMA }} | ||
CDM5_SQL_SERVER_OHDSI_SCHEMA: ${{ secrets.CDM5_SQL_SERVER_OHDSI_SCHEMA }} | ||
CDM5_SQL_SERVER_PASSWORD: ${{ secrets.CDM5_SQL_SERVER_PASSWORD }} | ||
CDM5_SQL_SERVER_SERVER: ${{ secrets.CDM5_SQL_SERVER_SERVER }} | ||
CDM5_SQL_SERVER_USER: ${{ secrets.CDM5_SQL_SERVER_USER }} | ||
CDM5_REDSHIFT_CDM54_SCHEMA: ${{ secrets.CDM5_REDSHIFT_CDM54_SCHEMA }} | ||
CDM5_REDSHIFT_OHDSI_SCHEMA: ${{ secrets.CDM5_REDSHIFT_OHDSI_SCHEMA }} | ||
CDM5_REDSHIFT_PASSWORD: ${{ secrets.CDM5_REDSHIFT_PASSWORD }} | ||
CDM5_REDSHIFT_SERVER: ${{ secrets.CDM5_REDSHIFT_SERVER }} | ||
CDM5_REDSHIFT_USER: ${{ secrets.CDM5_REDSHIFT_USER }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
|
||
- uses: r-lib/actions/setup-tinytex@v2 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- name: Install system requirements | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get install -y libssh-dev | ||
Rscript -e 'install.packages("remotes")' | ||
while read -r cmd | ||
do | ||
eval sudo $cmd | ||
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))') | ||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
args: 'c("--no-manual", "--as-cran")' | ||
error-on: '"warning"' | ||
check-dir: '"check"' | ||
|
||
- name: Upload source package | ||
if: success() && runner.os == 'macOS' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: package_tarball | ||
path: check/*.tar.gz | ||
|
||
- name: Install covr | ||
if: runner.os == 'macOS' | ||
run: | | ||
install.packages("covr") | ||
shell: Rscript {0} | ||
|
||
- name: Test coverage | ||
if: runner.os == 'macOS' | ||
run: covr::codecov() | ||
shell: Rscript {0} | ||
|
||
Release: | ||
needs: R-CMD-Check | ||
|
||
runs-on: macOS-latest | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
||
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }} | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Check if version has increased | ||
run: | | ||
echo "new_version="$(perl compare_versions --tag) >> $GITHUB_ENV | ||
- name: Display new version number | ||
if: ${{ env.new_version != '' }} | ||
run: | | ||
echo "${{ env.new_version }}" | ||
- name: Create release | ||
if: ${{ env.new_version != '' }} | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
with: | ||
tag_name: ${{ env.new_version }} | ||
release_name: Release ${{ env.new_version }} | ||
body: | | ||
See NEWS.md for release notes. | ||
draft: false | ||
prerelease: false | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
if: ${{ env.new_version != '' }} | ||
|
||
- name: Install drat | ||
if: ${{ env.new_version != '' }} | ||
run: | | ||
install.packages('drat') | ||
shell: Rscript {0} | ||
|
||
- name: Remove any tarballs that already exists | ||
if: ${{ env.new_version != '' }} | ||
run: | | ||
rm -f *.tar.gz | ||
- name: Download package tarball | ||
if: ${{ env.new_version != '' }} | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: package_tarball | ||
|
||
- name: Push to drat | ||
if: ${{ env.new_version != '' }} | ||
run: | | ||
bash deploy.sh | ||
- name: Push to BroadSea | ||
if: ${{ env.new_version != '' }} | ||
run: | | ||
curl --data "build=true" -X POST https://registry.hub.docker.com/u/ohdsi/broadsea-methodslibrary/trigger/f0b51cec-4027-4781-9383-4b38b42dd4f5/ | ||
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
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,3 @@ | ||
Version: 1.7.2 | ||
Date: 2023-05-11 16:33:58 UTC | ||
SHA: 7604a7c83bf808b55e4a062c096bdc74e6f7c7bc |
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
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
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,19 @@ | ||
# Achilles 1.7.2 | ||
|
||
1. Improved test setup management | ||
|
||
# Achilles 1.7.1 | ||
|
||
Changes | ||
|
||
1. Bug fix for Oracle/SqlRender lack of support for 'As' with table alias. | ||
2. Improved consistency with version parameters. | ||
3. Adherence to HADES requirements. | ||
|
||
# Achilles 1.7.0 | ||
|
||
Changes | ||
|
||
Official 1.7 release: Comprehensive updates with over 200 issues closed over the 24 months. | ||
|
||
With this release the main branch will now remain in sync with the latest release and ongoing development will be directed to the develop branch. |
Oops, something went wrong.