summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-12-23 09:47:19 +0100
committerChristian Breunig <christian@breunig.cc>2024-12-23 09:47:19 +0100
commit38395e86d54ed2cd47b7af76a0bd8534fde9e5c1 (patch)
tree04947f88248808cfad9c11563293291dc66ea7b3 /.github
parent3b95165b039a7058f8e9312815d7dad2dc05b694 (diff)
downloadvyos-build-38395e86d54ed2cd47b7af76a0bd8534fde9e5c1.tar.gz
vyos-build-38395e86d54ed2cd47b7af76a0bd8534fde9e5c1.zip
T6674: remove all references to Jenkins
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check-scripts-executable.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/check-scripts-executable.yml b/.github/workflows/check-scripts-executable.yml
deleted file mode 100644
index 123e9895..00000000
--- a/.github/workflows/check-scripts-executable.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: "Check for Jenkins build scripts has executable bit"
-
-on:
- pull_request:
- branches:
- - current
- - circinus
- - sagitta
- - equuleus
-
-permissions:
- contents: read
-
-jobs:
- check-scripts-executable:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- with:
- repository: ${{ github.repository }}
- - name: Checking scripts are executable
- run: |
- files=$(find packages/ -type f -name '*.py' -or -name '*.sh' -not -executable -print)
- if [[ -n $files ]]; then
- echo "Found files without executable bit:"
- for file in $files; do
- echo $file;
- done;
- exit 1;
- fi
- shell: bash