-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 016c59f Author: Dima Ryazanov <[email protected]> Date: Mon Sep 18 07:16:20 2023 -0700 Bump quiltcore and use workflows commit 843d22b Author: Ernest Prabhakar <[email protected]> Date: Mon Sep 11 15:35:28 2023 -0700 re-enabled failing workflow tests commit 41d6063 Author: Dr. Ernie Prabhakar <[email protected]> Date: Mon Sep 11 15:23:07 2023 -0700 Quiltcore java preview (#122) Ernie's updates for Sep 6-11 - Added unit and integration tests - Rewrote package to NOT pre-install (instead use Manifest to find relativeChildren) --------- Co-authored-by: Dima Ryazanov <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
153 additions
and
22 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Test | ||
|
||
on: | ||
# Trigger at every push. Action will also be visible from Pull Requests to master | ||
push: # Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions) | ||
pull_request: | ||
branches: [master] | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build: | ||
name: Package Test | ||
permissions: | ||
contents: read | ||
id-token: write | ||
issues: write | ||
pull-requests: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
java_version: [19] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
# Git Checkout | ||
- name: Checkout Code | ||
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
fetch-depth: 0 | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v3 | ||
with: | ||
role-to-assume: arn:aws:iam::712023778557:role/GitHub-Testing-NF-Quilt | ||
aws-region: us-east-1 | ||
|
||
- name: Setup Java ${{matrix.java_version}} | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{matrix.java_version}} | ||
distribution: 'temurin' | ||
architecture: x64 | ||
cache: gradle | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Run Package Tests | ||
run: make pkg-test | ||
|
||
- name: Archive production artifacts | ||
if: ${{ success() }} || ${{ failure() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: nf-quilt-pkg-test | ||
path: | | ||
/home/runner/work/nf-quilt/nf-quilt/plugins/nf-quilt/build/reports/tests/test/ |
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
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
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