diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2024-07-18 13:42:43 -0700 |
---|---|---|
committer | pluknet <105847909+pluknet@users.noreply.github.com> | 2024-09-04 20:01:47 +0400 |
commit | 042b9cc4db564dc16dfc93c31c14e9a6bb749509 (patch) | |
tree | 4a33848845d2c090ba1b8afe5d1438a6a737469c | |
parent | 082a3cbe3b7f6c28630f271c74b1787220974ed9 (diff) | |
download | nginx-042b9cc4db564dc16dfc93c31c14e9a6bb749509.tar.gz nginx-042b9cc4db564dc16dfc93c31c14e9a6bb749509.zip |
Added CI based on GitHub Actions.
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.
-rw-r--r-- | .github/workflows/buildbot.yml | 11 | ||||
-rw-r--r-- | .github/workflows/check-pr.yml | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/buildbot.yml b/.github/workflows/buildbot.yml new file mode 100644 index 000000000..484b74f98 --- /dev/null +++ b/.github/workflows/buildbot.yml @@ -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 index 000000000..92c0ea6bf --- /dev/null +++ b/.github/workflows/check-pr.yml @@ -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 |