You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by jm...@apache.org on 2023/03/31 18:17:45 UTC

[guacamole-manual] branch GUACAMOLE-1754-PR-build created (now b774990)

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

jmuehlner pushed a change to branch GUACAMOLE-1754-PR-build
in repository https://gitbox.apache.org/repos/asf/guacamole-manual.git


      at b774990  GUACAMOLE-1754: Run docker build for PR CI.

This branch includes the following new commits:

     new b774990  GUACAMOLE-1754: Run docker build for PR CI.

The 1 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.



[guacamole-manual] 01/01: GUACAMOLE-1754: Run docker build for PR CI.

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

jmuehlner pushed a commit to branch GUACAMOLE-1754-PR-build
in repository https://gitbox.apache.org/repos/asf/guacamole-manual.git

commit b774990abbb6e3cef932087735c962def62fd030
Author: James Muehlner <ja...@guac-dev.org>
AuthorDate: Fri Mar 31 18:17:34 2023 +0000

    GUACAMOLE-1754: Run docker build for PR CI.
---
 .github/workflows/pr-build.yml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml
new file mode 100644
index 0000000..8408b31
--- /dev/null
+++ b/.github/workflows/pr-build.yml
@@ -0,0 +1,29 @@
+name: Pull request CI build
+
+# Run build for all pull requests
+on:
+  pull_request:
+
+# Limit to only one build for a given PR source branch at a time,
+# cancelling any in-progress builds
+concurrency:
+  group: guacamole-manual-pr-${{ github.head_ref }}
+  cancel-in-progress: true
+
+jobs:
+
+  docker_build:
+    name: Run docker build
+    runs-on: ubuntu-latest
+    steps:
+
+      - name: Check out code
+        uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+          persist-credentials: false
+
+      - name: Build Docker container
+        shell: sh
+        run: |
+          docker build --pull --no-cache --force-rm .