Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 7.0.RC1.alpha002 tag #6

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/openeuler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ permissions:
on:
pull_request:
paths:
- .github/workflows/openeuler.yml
- 'cann/Dockerfile.openeuler'
- 'llm/**'
- 'pytorch/**'
Expand All @@ -28,14 +29,14 @@ jobs:

- name: Build
run: |
docker build -t ascendai/cann:910b-openeuler2203sp2 -f ./cann/Dockerfile.openeuler .
docker build -t ascendai/pytorch:910b-openeuler2203sp2 -f ./pytorch/Dockerfile --build-arg BASE_IMAGE=ascendai/cann:910b-openeuler2203sp2 .
docker build -t ascendai/cann:7.0.RC1.alpha002-910b-openeuler2203sp2 -f ./cann/Dockerfile.openeuler .
docker build -t ascendai/pytorch:7.0.RC1.alpha002-910b-openeuler2203sp2 -f ./pytorch/Dockerfile --build-arg BASE_IMAGE=ascendai/cann:7.0.RC1.alpha002-910b-openeuler2203sp2 .
cd llm
docker build -t ascendai/llm:910b-openeuler2203sp2 -f ./Dockerfile --build-arg BASE_IMAGE=ascendai/pytorch:910b-openeuler2203sp2 .
docker build -t ascendai/llm:7.0.RC1.alpha002-910b-openeuler2203sp2 -f ./Dockerfile --build-arg BASE_IMAGE=ascendai/pytorch:7.0.RC1.alpha002-910b-openeuler2203sp2 .

- name: Push
if: github.event_name == 'push'
run: |
docker push ascendai/cann:910b-openeuler2203sp2
docker push ascendai/pytorch:910b-openeuler2203sp2
docker push ascendai/llm:910b-openeuler2203sp2
docker push ascendai/cann:7.0.RC1.alpha002-910b-openeuler2203sp2
docker push ascendai/pytorch:7.0.RC1.alpha002-910b-openeuler2203sp2
docker push ascendai/llm:7.0.RC1.alpha002-910b-openeuler2203sp2
13 changes: 7 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ permissions:
on:
pull_request:
paths:
- .github/workflows/ubuntu.yml
- 'cann/Dockerfile.ubuntu'
- 'llm/**'
- 'pytorch/**'
Expand All @@ -28,14 +29,14 @@ jobs:

- name: Build
run: |
docker build -t ascendai/cann:910b-ubuntu2004 -f ./cann/Dockerfile.ubuntu .
docker build -t ascendai/pytorch:910b-ubuntu2004 -f ./pytorch/Dockerfile .
docker build -t ascendai/cann:7.0.RC1.alpha002-910b-ubuntu2004 -f ./cann/Dockerfile.ubuntu .
docker build -t ascendai/pytorch:7.0.RC1.alpha002-910b-ubuntu2004 -f ./pytorch/Dockerfile --build-arg BASE_IMAGE=ascendai/cann:7.0.RC1.alpha002-910b-ubuntu2004 .
cd llm
docker build -t ascendai/llm:910b-ubuntu2004 -f ./Dockerfile .
docker build -t ascendai/llm:7.0.RC1.alpha002-910b-ubuntu2004 -f ./Dockerfile --build-arg BASE_IMAGE=ascendai/cann:7.0.RC1.alpha002-910b-ubuntu2004 .

- name: Push
if: github.event_name == 'push'
run: |
docker push ascendai/cann:910b-ubuntu2004
docker push ascendai/pytorch:910b-ubuntu2004
docker push ascendai/llm:910b-ubuntu2004
docker push ascendai/cann:7.0.RC1.alpha002-910b-ubuntu2004
docker push ascendai/pytorch:7.0.RC1.alpha002-910b-ubuntu2004
docker push ascendai/llm:7.0.RC1.alpha002-910b-ubuntu2004