-
Notifications
You must be signed in to change notification settings - Fork 9
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 #321 from vimc/vimc-6765
Trigger orderly.server downstream build after check completed
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
- main | ||
- master | ||
|
||
name: R-CMD-check | ||
name: Check | ||
|
||
jobs: | ||
R-CMD-check: | ||
|
@@ -77,6 +77,12 @@ jobs: | |
run: | | ||
brew install libgit2 | ||
- name: Install openssl (Windows) | ||
if: runner.os == 'Windows' | ||
run: | | ||
install.packages("openssl", type = "binary") | ||
shell: Rscript {0} | ||
|
||
- name: Install dependencies | ||
run: | | ||
remotes::install_deps(dependencies = TRUE) | ||
|
@@ -110,3 +116,19 @@ jobs: | |
with: | ||
name: ${{ runner.os }}-r${{ matrix.config.r }}-results | ||
path: check | ||
|
||
check-orderly-server: | ||
|
||
runs-on: ubuntu-20.04 | ||
|
||
needs: R-CMD-check | ||
|
||
steps: | ||
- uses: convictional/[email protected] | ||
with: | ||
owner: vimc | ||
repo: orderly.server | ||
ref: master | ||
github_token: ${{ secrets.REPO_DISPATCH_TOKEN }} | ||
client_payload: "{\"orderly_version\": \"${{ github.event_name == 'push' && 'master' || github.head_ref }}\"}" | ||
workflow_file_name: R-CMD-check.yaml |
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