Commit 0fa10d8c authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): here

parent fb607fd3
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -70,19 +70,17 @@ jobs:
          git config user.name 'narugo1992'
          git config user.email 'narugo@126.com'
          git add -A
          (git diff-index --quiet HEAD && echo "HAS_CHANGE=" >> $GITHUB_ENV) || echo "HAS_CHANGE=yes" >> $GITHUB_ENV
          git diff-index --quiet HEAD || git commit -a -m "dev(narugo): auto sync $(date -R)"
      - name: Push changes
        if: ${{ env.HAS_CHANGE }}
        uses: ad-m/github-push-action@master
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
      - name: Cancel current workflow
        if: ${{ env.HAS_CHANGE }}
        uses: andymckay/cancel-action@master
          branch: ${{ github.ref }}

  doc:
    runs-on: ubuntu-latest
    needs:
      - contents
    if: "!contains(github.event.head_commit.message, 'ci skip')"
    strategy:
      matrix:
@@ -133,6 +131,7 @@ jobs:
          ENV_PROD: 'true'
          PLANTUML_HOST: http://localhost:18080
        run: |
          git pull
          git fetch --all --tags
          git branch -av
          git remote -v
+1 −1
Original line number Diff line number Diff line
@@ -1205,7 +1205,7 @@ fabric.properties
/docs/source/**/*.sh.err
/docs/source/**/*.sh.exitcode
/docs/source/**/*.dat.*
!/docs/source/**/*.bm.*
!/docs/source/**/benchmark_*.dat.*
!/docs/source/_static/**/*
/docs/source/**/*.result.ipynb
/cartpole_dqn_*
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ BUILDDIR ?= ${PROJ_DIR}/build
ALL_MK := ${SOURCEDIR}/all.mk
ALL    := $(MAKE) -f "${ALL_MK}" SOURCE=${SOURCEDIR}

BMS    := $(shell find ${SOURCEDIR} -name '*.bm.*')
BMS    := $(shell find ${SOURCEDIR} -name 'benchmark_*.dat.*')

.EXPORT_ALL_VARIABLES:

@@ -46,4 +46,4 @@ builddir:
	@echo $(shell readlink -f ${BUILDDIR}/html)

cleanbm:
	rm -rf ${BMS}
	@$(ALL) cleanbm
+0 −2250

File deleted.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ if __name__ == '__main__':
            ('face (yolov8s)', FaceDetectBenchmark('s')),
            ('face (yolov8n)', FaceDetectBenchmark('n')),
        ],
        save_as='benchmark_face_detect.bm.svg',
        save_as='benchmark_face_detect.dat.svg',
        title='Benchmark for Anime Face Detections',
        run_times=10,
        try_times=5,
Loading