This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-connectors.git
The following commit(s) were added to refs/heads/main by this push:
new 547d30ef PR CI run only compiles, ignores actual tests (#37)
547d30ef is described below
commit 547d30ef26eb1401381a5ec04629278535903c0a
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Mar 9 23:49:06 2023 +0100
PR CI run only compiles, ignores actual tests (#37)
* PR CI run only compiles, ignores actual tests
* Update nightly-builds.yml
---
.github/workflows/check-build-test.yml | 6 ++--
.github/workflows/license-and-vulnerabilities.yml | 2 +-
.github/workflows/link-validator.yml | 2 +-
.github/workflows/nightly-builds.yml | 34 +++++++++++++++++++++++
.github/workflows/publish.yml | 2 +-
5 files changed, 40 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/check-build-test.yml
b/.github/workflows/check-build-test.yml
index 6c92f366..99001aad 100644
--- a/.github/workflows/check-build-test.yml
+++ b/.github/workflows/check-build-test.yml
@@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
# temporarily do full checkout
# with: #
https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos
# fetch-depth: 100
@@ -51,7 +51,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
# temporarily do full checkout
# with: #
https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos
# fetch-depth: 100
@@ -135,7 +135,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
# temporarily do full checkout
# with: # gh-detect-changes.sh compares with the target branch
# fetch-depth: 0
diff --git a/.github/workflows/license-and-vulnerabilities.yml
b/.github/workflows/license-and-vulnerabilities.yml
index d65f43ef..e1d096aa 100644
--- a/.github/workflows/license-and-vulnerabilities.yml
+++ b/.github/workflows/license-and-vulnerabilities.yml
@@ -16,7 +16,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with: #
https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos
fetch-depth: 100
- name: Fetch tags
diff --git a/.github/workflows/link-validator.yml
b/.github/workflows/link-validator.yml
index 5abdb668..aa4211d0 100644
--- a/.github/workflows/link-validator.yml
+++ b/.github/workflows/link-validator.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with: #
https://github.com/olafurpg/setup-scala#faster-checkout-of-big-repos
fetch-depth: 100
diff --git a/.github/workflows/nightly-builds.yml
b/.github/workflows/nightly-builds.yml
new file mode 100644
index 00000000..be458fe5
--- /dev/null
+++ b/.github/workflows/nightly-builds.yml
@@ -0,0 +1,34 @@
+name: Nightly Build
+
+on:
+ schedule:
+ - cron: "21 0 * * *"
+ workflow_dispatch:
+
+permissions: {}
+
+concurrency:
+ group: ci-${{ github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ test:
+ name: Compile, Code Style, Binary Compatibility
+ runs-on: ubuntu-20.04
+ env:
+ JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Set up JDK 8
+ uses: coursier/[email protected]
+ with:
+ jvm: adopt:8
+
+ - name: Cache Coursier cache
+ uses: coursier/[email protected]
+
+ - name: "Run all tests. Run locally with: sbt \"test\""
+ run: sbt "test"
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 1ca36961..fa9743e9 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -21,7 +21,7 @@ jobs:
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]