You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2022/04/15 07:35:09 UTC

[isis] branch master updated (9b3d5f973e -> 1367c3bf3c)

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


    from 9b3d5f973e Merge pull request #909 from apache/ISIS-3001
     new 5852b5b97a ISIS-2998: enable nightly build of maven artifacts
     new 1367c3bf3c updates README with details of the nightly build

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../workflows/ci-build-artifacts-push-maven.yml    |  6 +--
 README.adoc                                        | 49 +++++++++++++++++++++-
 antora/supplemental-ui/index.html                  |  6 +--
 3 files changed, 52 insertions(+), 9 deletions(-)


[isis] 01/02: ISIS-2998: enable nightly build of maven artifacts

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 5852b5b97a7be3a78175544ce596d0f16a236ee5
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Apr 15 07:24:14 2022 +0100

    ISIS-2998: enable nightly build of maven artifacts
---
 .github/workflows/ci-build-artifacts-push-maven.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci-build-artifacts-push-maven.yml b/.github/workflows/ci-build-artifacts-push-maven.yml
index 96e7b344dc..04bfd91898 100644
--- a/.github/workflows/ci-build-artifacts-push-maven.yml
+++ b/.github/workflows/ci-build-artifacts-push-maven.yml
@@ -2,9 +2,9 @@ name: Apache Isis Nightly Build
 
 on:
   workflow_dispatch:
-  #schedule:
-    ## daily 02:00 (UTC) in the morning
-    #- cron: '0 2 * * *'
+  schedule:
+    # daily 02:00 (UTC) in the morning
+    - cron: '0 2 * * *'
 
 jobs:
   build:


[isis] 02/02: updates README with details of the nightly build

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 1367c3bf3c298f01bf455e9ce5bf512b811309f3
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Apr 15 08:35:02 2022 +0100

    updates README with details of the nightly build
---
 README.adoc                       | 49 ++++++++++++++++++++++++++++++++++++++-
 antora/supplemental-ui/index.html |  6 +----
 2 files changed, 49 insertions(+), 6 deletions(-)

diff --git a/README.adoc b/README.adoc
index 27c4e9f4a9..ccb3820676 100644
--- a/README.adoc
+++ b/README.adoc
@@ -15,10 +15,57 @@ Start learning about Apache Isis using the https://github.com/apache/isis-app-he
 Explore features with our daily built demo docker image https://github.com/apache/isis/blob/master/examples/demo/domain/src/main/adoc/modules/demo/pages/about.adoc["DemoApp"].
 Build your own apps using our https://github.com/apache/isis-app-simpleapp["SimpleApp"] starter app.
 
-For help and support, join our https://cwiki.apache.org/confluence/display/ISIS/Signing+up+to+Slack[Slack channel] or http://isis.apache.org/support.html[mailing list].
+For help and support, join our https://isis.apache.org/docs/2.0.0-M7/support/slack-channel.html[Slack channel] or https://isis.apache.org/docs/2.0.0-M7/support/mailing-list.html[mailing list].
 
 toc::[]
 
+== Nightly Builds
+
+Nightly builds are available as link:https://github.com/orgs/apache/packages?repo_name=isis[packages] of this repo.
+
+One way to make them available is to add the following to your `~/.m2/settings.xml` file.
+You will need to add a github token in the location indicated:
+
+[source,xml]
+.~/.m2/settings.xml
+----
+<settings>
+  <servers>
+    <server>
+      <id>github-apache-isis</id>
+      <username>myusername</username>                               <!--.-->
+      <password>ghp_TOKEN_WITH_PACKAGE_REPO_READ_ACCESS</password>  <!--.-->
+    </server>
+  </servers>
+  <profiles>
+    <profile>
+      <id>github-apache-isis</id>
+      <activation>
+        <property>
+          <name>!skip.github-apache-isis</name>
+        </property>
+      </activation>
+      <repositories>
+        <repository>
+          <id>github-apache-isis</id>
+          <url>https://maven.pkg.github.com/apache/isis</url>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
+  </profiles>
+  <activeProfiles>
+    <activeProfile>github-apache-isis</activeProfile>
+  </activeProfiles>
+</settings>
+----
+<.> your github username.
+<.> a corresponding personal token to provide access, as per link:https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages[these docs].
+
+You can find the latest version by browsing the link:https://github.com/apache/isis/packages/1304938[org.apache.isis.core.isis-applib] package.
+
 == Core Features
 
 Apache Isis automatically generates the UI from the domain classes.
diff --git a/antora/supplemental-ui/index.html b/antora/supplemental-ui/index.html
index dedceb89a4..6a08523a89 100644
--- a/antora/supplemental-ui/index.html
+++ b/antora/supplemental-ui/index.html
@@ -50,15 +50,11 @@
       -->
     </div>
     <div class="social-links float-right">
-      <a href="https://lists.apache.org/list.html?users@isis.apache.org" class="email"><i class="fa fa-at"></i></a>
+      <a href="docs/latest/support/mailing-list.html" class="email"><i class="fa fa-at"></i></a>
       <a href="docs/latest/support/slack-channel.html" class="slack"><i class="fa fa-slack"></i></a>
       <a href="https://issues.apache.org/jira/secure/RapidBoard.jspa?rapidView=87" class="bug"><i class="fa fa-bug"></i></a>
       <a href="https://stackoverflow.com/questions/tagged/isis" class="stackoverflow"><i class="fa fa-stack-overflow"></i></a>
       <a href="https://twitter.com/ApacheIsis" class="twitter"><i class="fa fa-twitter"></i></a>
-      <!--
-              <a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
-              <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
-      -->
     </div>
   </div>
 </section>