-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:/volcano-sh/volcano into dev
Conflicts: docs/user-guide/how_to_use_gpu_sharing.md pkg/scheduler/plugins/predicates/predicates.go
- Loading branch information
Showing
2,076 changed files
with
251,038 additions
and
138,065 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Code Verify | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
verify: | ||
runs-on: ubuntu-18.04 | ||
name: Verify codes, generated files | ||
timeout-minutes: 40 | ||
env: | ||
GOPATH: /home/runner/work/${{ github.repository }} | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
path: ./src/github.com/${{ github.repository }} | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Run verify test | ||
run: | | ||
make lint | ||
make verify | ||
make TAG=latest generate-yaml | ||
make verify-generated-yaml | ||
make unit-test | ||
working-directory: ./src/github.com/${{ github.repository }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: E2E Parallel Jobs | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
e2e_parallel_jobs: | ||
runs-on: ubuntu-18.04 | ||
name: E2E about Parallel Jobs | ||
timeout-minutes: 40 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Install musl | ||
run: | | ||
wget http://musl.libc.org/releases/musl-1.2.1.tar.gz | ||
tar -xf musl-1.2.1.tar.gz && cd musl-1.2.1 | ||
./configure | ||
make && sudo make install | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Install dependences | ||
run: | | ||
GO111MODULE="on" go get sigs.k8s.io/[email protected] | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.3/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run E2E Tests | ||
run: | | ||
make images CC=/usr/local/musl/bin/musl-gcc | ||
make e2e-test-jobp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Scheduling Actions | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
e2e_scheduling_actions: | ||
runs-on: ubuntu-18.04 | ||
name: E2E about Scheduling Actions | ||
timeout-minutes: 40 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Install musl | ||
run: | | ||
wget http://musl.libc.org/releases/musl-1.2.1.tar.gz | ||
tar -xf musl-1.2.1.tar.gz && cd musl-1.2.1 | ||
./configure | ||
make && sudo make install | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Install dependences | ||
run: | | ||
GO111MODULE="on" go get sigs.k8s.io/[email protected] | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.3/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run E2E Tests | ||
run: | | ||
make images CC=/usr/local/musl/bin/musl-gcc | ||
make e2e-test-schedulingaction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Basic scheduling Jobs | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
e2e_scheduling_basic: | ||
runs-on: ubuntu-18.04 | ||
name: E2E about Basic Scheduling | ||
timeout-minutes: 40 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Install musl | ||
run: | | ||
wget http://musl.libc.org/releases/musl-1.2.1.tar.gz | ||
tar -xf musl-1.2.1.tar.gz && cd musl-1.2.1 | ||
./configure | ||
make && sudo make install | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Install dependences | ||
run: | | ||
GO111MODULE="on" go get sigs.k8s.io/[email protected] | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.3/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run E2E Tests | ||
run: | | ||
make images CC=/usr/local/musl/bin/musl-gcc | ||
make e2e-test-schedulingbase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: E2E Sequence Jobs | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
e2e_sequence: | ||
runs-on: ubuntu-18.04 | ||
name: E2E about Sequence | ||
timeout-minutes: 40 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Install musl | ||
run: | | ||
wget http://musl.libc.org/releases/musl-1.2.1.tar.gz | ||
tar -xf musl-1.2.1.tar.gz && cd musl-1.2.1 | ||
./configure | ||
make && sudo make install | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Install dependences | ||
run: | | ||
GO111MODULE="on" go get sigs.k8s.io/[email protected] | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.3/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run E2E Tests | ||
run: | | ||
make images CC=/usr/local/musl/bin/musl-gcc | ||
make e2e-test-jobseq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Vcctl Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
pull_request: | ||
|
||
jobs: | ||
e2e_vcctl: | ||
runs-on: ubuntu-18.04 | ||
name: E2E about Volcano CLI | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
|
||
- name: Install musl | ||
run: | | ||
wget http://musl.libc.org/releases/musl-1.2.1.tar.gz | ||
tar -xf musl-1.2.1.tar.gz && cd musl-1.2.1 | ||
./configure | ||
make && sudo make install | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
|
||
- name: Install dependences | ||
run: | | ||
GO111MODULE="on" go get sigs.k8s.io/[email protected] | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.3/bin/linux/amd64/kubectl && sudo install kubectl /usr/local/bin/kubectl | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run E2E Tests | ||
run: | | ||
make vcctl | ||
make images CC=/usr/local/musl/bin/musl-gcc | ||
make e2e-test-vcctl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.