Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/prepare-ci-code/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
set -e

target=tmp
branch=5.4.143-velinux
branch=ci-5.4.143-velinux

git clone -b $branch ${{ github.server_url }}/${{ github.repository }}.git $target
shell: bash
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
ssh-key: ${{ secrets.ssh_key }}
set-safe-directory: true
- name: PrepareCICode
uses: bytedance/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
uses: mistachio/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
- name: BuildKernel
uses: bytedance/kernel/.github/actions/build-kernel@5.4.143-velinux
uses: mistachio/kernel/.github/actions/build-kernel@5.4.143-velinux
with:
arch: ${{ matrix.arch }}
distro-code: ${{ matrix.distro_code }}
- name: TestKernel
uses: bytedance/kernel/.github/actions/test-kernel@5.4.143-velinux
uses: mistachio/kernel/.github/actions/test-kernel@5.4.143-velinux
with:
arch: ${{ matrix.arch }}
distro-code: ${{ matrix.distro_code }}
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:

jobs:
StaticCheck:
uses: bytedance/kernel/.github/workflows/static.yml@5.4.143-velinux
uses: mistachio/kernel/.github/workflows/static.yml@5.4.143-velinux
secrets:
ssh_key: ${{ secrets.SSH_KEY }}
BuildAndTestKernel:
uses: bytedance/kernel/.github/workflows/build-and-test.yml@5.4.143-velinux
uses: mistachio/kernel/.github/workflows/build-and-test.yml@5.4.143-velinux
secrets:
ssh_key: ${{ secrets.SSH_KEY }}
8 changes: 4 additions & 4 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
ssh-key: ${{ secrets.ssh_key }}
set-safe-directory: true
- name: FetchRefs
uses: bytedance/kernel/.github/actions/fetch-refs@5.4.143-velinux
uses: mistachio/kernel/.github/actions/fetch-refs@5.4.143-velinux
with:
depth: 2000
- name: PrepareCICode
uses: bytedance/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
uses: mistachio/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
- name: CheckFormat
run: |
set -e
Expand All @@ -43,11 +43,11 @@ jobs:
ssh-key: ${{ secrets.ssh_key }}
set-safe-directory: true
- name: FetchRefs
uses: bytedance/kernel/.github/actions/fetch-refs@5.4.143-velinux
uses: mistachio/kernel/.github/actions/fetch-refs@5.4.143-velinux
with:
depth: 2000
- name: PrepareCICode
uses: bytedance/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
uses: mistachio/kernel/.github/actions/prepare-ci-code@5.4.143-velinux
- name: SearchFixes
run: |
set -e
Expand Down
Loading