-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
27 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,4 +1,4 @@ | ||
# Install packages, update data, test, and archive | ||
# Install packages, update data, test, and archive | ||
|
||
name: CI | ||
|
||
|
@@ -17,7 +17,7 @@ on: | |
jobs: | ||
build: | ||
if: contains(toJson(github.event.commits), '[skip ci]') == false | ||
|
||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
@@ -26,64 +26,66 @@ jobs: | |
matrix: | ||
config: | ||
- {os: ubuntu-latest, r: '4.2.2', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} | ||
|
||
env: | ||
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true | ||
RSPM: ${{ matrix.config.rspm }} | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 3 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
|
||
- name: Cache R packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ env.R_LIBS_USER }} | ||
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-2-${{ hashFiles('.github/depends.Rds') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ hashFiles('.github/R-version') }}-2- | ||
- name: Install system dependencies | ||
run: sudo apt-get install libgit2-dev libcurl4-openssl-dev libudunits2-dev libgdal-dev libnetcdf-dev libgeos-dev libproj-dev | ||
|
||
run: | | ||
sudo apt remove libudunits2-dev libgdal-dev libgeos-dev libproj-dev | ||
sudo apt-get install libgit2-dev libcurl4-openssl-dev libudunits2-dev libgdal-dev libnetcdf-dev libgeos-dev libproj-dev | ||
- name: Install packages | ||
run: Rscript install-packages.R | ||
run: Rscript install-packages.R | ||
|
||
- name: Update data | ||
run: Rscript update-data.R | ||
|
||
- name: Test | ||
run: Rscript testthat.R | ||
|
||
- name: Check for new files | ||
id: check_files | ||
run: | | ||
if [[ -z "$(git status --porcelain)" ]] ; then | ||
if [[ -z "$(git status --porcelain)" ]] ; then | ||
echo "Git status is empty" | ||
echo "diff=FALSE" >> $GITHUB_OUTPUT | ||
else | ||
else | ||
echo "diff=TRUE" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Bump version | ||
id: version | ||
env: | ||
env: | ||
LOG: ${{ github.event_name == 'pull_request' && '$(git log --no-merges --format=%B -n 1 HEAD^2)' || '$(git log --no-merges --format=%B -n 1 HEAD)' }} | ||
CRON: ${{ github.event_name == 'schedule' && 'TRUE' || 'FALSE' }} | ||
run: | | ||
R -e "source('version_bump.R'); bump_version('${{ env.LOG }}', ${{ env.CRON }}, ${{ steps.check_files.outputs.diff }})" | ||
if echo "$(git status --porcelain)" | grep -q version.txt ; then | ||
if echo "$(git status --porcelain)" | grep -q version.txt ; then | ||
echo "Version changed" | ||
echo "new_ver=TRUE" >> $GITHUB_OUTPUT | ||
else | ||
else | ||
echo "No version bump" | ||
echo "new_ver=FALSE" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Setup Tag | ||
if: github.event_name != 'pull_request' && steps.version.outputs.new_ver == 'TRUE' | ||
id: tagging | ||
|
@@ -92,18 +94,18 @@ jobs: | |
echo "tag=$value" >> $GITHUB_OUTPUT | ||
value="v${value}" | ||
echo "release=$value" >> $GITHUB_OUTPUT | ||
- name: Tag new version for release | ||
if: github.event_name != 'pull_request' && steps.version.outputs.new_ver == 'TRUE' | ||
env: | ||
env: | ||
JOB_TAGS: ${{ github.event_name == 'schedule' && '[skip ci] [cron]' || '[skip ci]' }} | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Weecology Deploy Bot | ||
author_email: [email protected] | ||
message: "Update data and trigger archive: GitHub Build ${{ github.run_number }} ${{ env.JOB_TAGS }}" | ||
tag: ${{ steps.tagging.outputs.tag }} | ||
|
||
- name: Create Release | ||
if: github.event_name != 'pull_request' && steps.version.outputs.new_ver == 'TRUE' | ||
id: create_release | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
message("Updating weather station data") | ||
source("DataCleaningScripts/get_new_weather.R"); append_weather() | ||
# source("DataCleaningScripts/get_water_data.R"); update_water() | ||
source("DataCleaningScripts/get_water_data.R"); update_water() |