]> git.kaiwu.me - nginx.git/commitdiff
Added CI based on GitHub Actions.
authorKonstantin Pavlov <thresh@nginx.com>
Thu, 18 Jul 2024 20:42:43 +0000 (13:42 -0700)
committerpluknet <105847909+pluknet@users.noreply.github.com>
Wed, 4 Sep 2024 16:01:47 +0000 (20:01 +0400)
Pushes to master and stable branches will result in buildbot-like checks
on multiple OSes and architectures.

Pull requests will be checked on a public Ubuntu GitHub runner.

.github/workflows/buildbot.yml [new file with mode: 0644]
.github/workflows/check-pr.yml [new file with mode: 0644]

diff --git a/.github/workflows/buildbot.yml b/.github/workflows/buildbot.yml
new file mode 100644 (file)
index 0000000..484b74f
--- /dev/null
@@ -0,0 +1,11 @@
+name: buildbot
+
+on:
+  push:
+    branches:
+      - master
+      - 'stable-1.*'
+
+jobs:
+  buildbot:
+    uses: nginx/ci-self-hosted/.github/workflows/nginx-buildbot.yml@main
diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml
new file mode 100644 (file)
index 0000000..92c0ea6
--- /dev/null
@@ -0,0 +1,8 @@
+name: check-pr
+
+on:
+  pull_request:
+
+jobs:
+  check-pr:
+    uses: nginx/ci-self-hosted/.github/workflows/nginx-check-pr.yml@main