Skip to content

Commit

Permalink
Merge branch 'master' into pr/1939
Browse files Browse the repository at this point in the history
  • Loading branch information
cenit committed Aug 27, 2023
2 parents b9bc365 + 538c435 commit d752890
Show file tree
Hide file tree
Showing 95 changed files with 16,774 additions and 1,854 deletions.
313 changes: 200 additions & 113 deletions .github/workflows/ccpp.yml

Large diffs are not rendered by default.

159 changes: 86 additions & 73 deletions .github/workflows/on_pr.yml

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@ on:
jobs:
rebase:
name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'CONTRIBUTOR')
runs-on: ubuntu-latest
if: >-
github.event.issue.pull_request != '' &&
(
contains(github.event.comment.body, '/rebase') ||
contains(github.event.comment.body, '/autosquash')
)
steps:
- name: Checkout the latest code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
- name: Automatic Rebase
uses: cirrus-actions/[email protected]
uses: cirrus-actions/[email protected]
with:
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.lib
*.dylib
*.pyc
*.bak
mnist/
data/
caffe/
Expand All @@ -23,6 +24,7 @@ cfg/
temp/
build/darknet/*
build_*/
debug/
ninja/
ninja.zip
vcpkg_installed/
Expand Down
137 changes: 0 additions & 137 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit d752890

Please sign in to comment.