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:01:02 UTC

[guacamole-server] branch GUACAMOLE-1754-PR-build created (now e2e78e76)

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-server.git


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

This branch includes the following new commits:

     new e2e78e76 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-server] 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-server.git

commit e2e78e7695a7d779bea5fc884c6cedba9b409e68
Author: James Muehlner <ja...@guac-dev.org>
AuthorDate: Wed Mar 22 17:34:03 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 00000000..1aa64079
--- /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-server-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 .