From 3fe1032ffbc17df7d13706a22e60689bc9f06774 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar <3998+srid@users.noreply.github.com> Date: Tue, 13 Feb 2024 12:46:50 -0500 Subject: [PATCH] Switch to gh selfhosted runner (#44) * Delete Jenkinsfile * Create ci.yaml --- .github/workflows/ci.yaml | 12 ++++++++++++ Jenkinsfile | 11 ----------- 2 files changed, 12 insertions(+), 11 deletions(-) create mode 100644 .github/workflows/ci.yaml delete mode 100644 Jenkinsfile diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..9900fd4 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,12 @@ +name: "CI" +on: + push: + branches: + - master + pull_request: +jobs: + build: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - run: nixci diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index f7920b3..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,11 +0,0 @@ -pipeline { - agent any - stages { - stage ('Build') { - steps { - // https://github.com/srid/nixci - nixCI () - } - } - } -}