From aff93d8bb50c7d5ca1b098dbfe4a30660f6344fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sun, 23 Jul 2023 01:44:12 +0800 Subject: [PATCH] backup v1 --- .github/workflows/docker.yml | 70 ------------------------------- .github/workflows/genlocale.yml | 4 +- .github/workflows/pull_format.yml | 7 +++- .github/workflows/push_format.yml | 4 +- .github/workflows/unitest.yml | 12 +++++- .gitignore | 2 + 6 files changed, 21 insertions(+), 78 deletions(-) delete mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml deleted file mode 100644 index 68f74fa..0000000 --- a/.github/workflows/docker.yml +++ /dev/null @@ -1,70 +0,0 @@ -name: Build And Push Docker Image - -on: - workflow_dispatch: - push: - # Sequence of patterns matched against refs/tags - tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 - -jobs: - build: - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - steps: - - uses: actions/checkout@v3 - - name: Set time zone - uses: szenius/set-timezone@v1.0 - with: - timezoneLinux: "Asia/Shanghai" - timezoneMacos: "Asia/Shanghai" - timezoneWindows: "China Standard Time" - - # # 如果有 dockerhub 账户,可以在github的secrets中配置下面两个,然后取消下面注释的这几行,并在meta步骤的images增加一行 ${{ github.repository }} - # - name: Login to DockerHub - # uses: docker/login-action@v1 - # with: - # username: ${{ secrets.DOCKERHUB_USERNAME }} - # password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Login to GHCR - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@v4 - with: - images: | - ghcr.io/${{ github.repository }} - # generate Docker tags based on the following events/attributes - # nightly, master, pr-2, 1.2.3, 1.2, 1 - tags: | - type=schedule,pattern=nightly - type=edge - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=semver,pattern={{major}} - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Build and push - id: docker_build - uses: docker/build-push-action@v4 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/genlocale.yml b/.github/workflows/genlocale.yml index 966ccd3..8b9663b 100644 --- a/.github/workflows/genlocale.yml +++ b/.github/workflows/genlocale.yml @@ -1,8 +1,8 @@ -name: genlocale +name: genlocale_v1 on: push: branches: - - main + - v1 jobs: golangci: name: genlocale diff --git a/.github/workflows/pull_format.yml b/.github/workflows/pull_format.yml index 60f6b4d..bf24990 100644 --- a/.github/workflows/pull_format.yml +++ b/.github/workflows/pull_format.yml @@ -1,6 +1,9 @@ -name: pull format +name: pull format v1 -on: [pull_request] +on: + pull_request: + branches: + - v1 permissions: contents: write diff --git a/.github/workflows/push_format.yml b/.github/workflows/push_format.yml index c4ce77f..a436491 100644 --- a/.github/workflows/push_format.yml +++ b/.github/workflows/push_format.yml @@ -1,9 +1,9 @@ -name: push format +name: push format v1 on: push: branches: - - main + - v1 permissions: contents: write diff --git a/.github/workflows/unitest.yml b/.github/workflows/unitest.yml index ee691d1..f048f30 100644 --- a/.github/workflows/unitest.yml +++ b/.github/workflows/unitest.yml @@ -1,5 +1,13 @@ -name: unitest -on: [ push, pull_request ] +name: unitest_v1 + +on: + push: + branches: + - v1 + pull_request: + branches: + - v1 + jobs: build: runs-on: ${{ matrix.os }} diff --git a/.gitignore b/.gitignore index 82c8a74..eb29db4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ __pycache__ *.pyd hubert_base.pt /logs +.venv +/pretrained_v2