You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2023/01/16 12:26:25 UTC

[qpid-site] branch asf-site updated (d8889eb9a -> 524ec1d62)

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

robbie pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git


    from d8889eb9a update site content for protonj2 1.0.0-M12
     new aa909e2b8 Update README
     new 524ec1d62 NO-JIRA: add a GHA CI job following removal of Travis job

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:
 .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++
 README.md                   |  2 +-
 2 files changed, 30 insertions(+), 1 deletion(-)
 create mode 100644 .github/workflows/build.yml


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[qpid-site] 01/02: Update README

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

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git

commit aa909e2b882716b105075fa0c52f5e4a4755c48a
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Mon Jan 16 12:14:15 2023 +0000

    Update README
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index d60dae0db..617e3937e 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
  - Git
  - GNU Find
  - GNU Make
- - Python 2.7
+ - Python 3
 
 ## Project layout
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[qpid-site] 02/02: NO-JIRA: add a GHA CI job following removal of Travis job

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

robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git

commit 524ec1d62ce481fdd5f842bd55038b09763c43d0
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Mon Jan 16 12:25:34 2023 +0000

    NO-JIRA: add a GHA CI job following removal of Travis job
---
 .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 000000000..7e95b7e63
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,29 @@
+name: "Build"
+
+on: [push, pull_request, workflow_dispatch]
+
+jobs:
+  build:
+    runs-on: ubuntu-22.04
+
+    steps:
+      - uses: actions/checkout@v3
+
+      - name: Setup Python
+        uses: actions/setup-python@v3
+        with:
+          python-version: 3.10.9
+
+      - name: Build Content
+        run: |
+          make render
+          make publish
+
+      - name: Check Links
+        run: |
+          make check-links
+
+      - name: Check Output Files
+        run: |
+          make check-output-files
+


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org