Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix release image
Browse files Browse the repository at this point in the history
siyuan0322 committed Dec 22, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 8fd52b4 commit 59c406f
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ on:
- 'scripts/**'

jobs:
gae:
build-gae:
runs-on: ubuntu-20.04
defaults:
run:
@@ -128,7 +128,7 @@ jobs:
path: gae.tar
retention-days: 5

gie:
build-gie:
runs-on: ubuntu-20.04
defaults:
run:
@@ -168,7 +168,7 @@ jobs:
path: gie.tar
retention-days: 5

gle:
build-gle:
runs-on: ubuntu-20.04
defaults:
run:
@@ -228,7 +228,7 @@ jobs:
path: gle.tar
retention-days: 5

manager:
build-manager:
runs-on: ubuntu-20.04
env:
profile: release
@@ -264,7 +264,7 @@ jobs:

python-test:
runs-on: ubuntu-20.04
needs: [gae, gle]
needs: [build-gae, build-gle]
defaults:
run:
shell: scl enable devtoolset-7 -- bash --noprofile --norc -eo pipefail {0}
@@ -325,7 +325,7 @@ jobs:
k8s-test:
runs-on: self-hosted
needs: [gae, gie, gle, manager]
needs: [build-gae, build-gie, build-gle, build-manager]
steps:
- name: Clean up
run: |
@@ -396,7 +396,7 @@ jobs:
gie-test:
runs-on: self-hosted
needs: [gae, gie, gle, manager]
needs: [build-gae, build-gie, build-gle, build-manager]
steps:
- name: Clean up
run: |
@@ -466,6 +466,8 @@ jobs:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs: [ gie-test, python-test, k8s-test ]
steps:
- uses: actions/checkout@v2.3.2

- uses: actions/download-artifact@v2
with:
path: artifacts

0 comments on commit 59c406f

Please sign in to comment.