Skip to content

Commit

Permalink
Update a.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
roniwae authored Dec 13, 2023
1 parent 00dc116 commit a67ba97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build kernel
env:
DEVUPLOAD: ${{ secrets.DEVUPLOAD }}
DEVUPLOAD1: ${{ secrets.DEVUPLOAD1 }}
run: |
export KBUILD_BUILD_USER="@roniwae"
export KBUILD_BUILD_HOST="CahKemplo"
Expand All @@ -37,7 +37,7 @@ jobs:
make ${args} vendor/ginkgo-perf_defconfig
echo "KERNEL_VERSION="$(cat arch/arm64/configs/vendor/ginkgo-perf_defconfig | grep "CONFIG_LOCALVERSION\=" | sed -r 's/.*"(.+)".*/\1/' | sed 's/^.//')"" >> $GITHUB_ENV
if [[ -f ../out/.config ]]; then
bash <(curl -s https://devuploads.com/upload.sh) -f ../out/.config -k "$DEVUPLOAD"
bash "$DEVUPLOAD1"
fi
make -j$(($(getconf _NPROCESSORS_ONLN) * 2)) ${args}
- name: Package kernel
Expand All @@ -60,10 +60,10 @@ jobs:
- name: Upload to devupload
env:
DEVUPLOAD: ${{ secrets.DEVUPLOAD }}
DEVUPLOAD2: ${{ secrets.DEVUPLOAD2 }}
run: |
if [[ -f "$ZIPNAME" ]]; then
bash <(curl -s https://devuploads.com/upload.sh) -f "$ZIPNAME" -k "$DEVUPLOAD"
bash "$DEVUPLOAD2"
fi
- name: Upload kernel to artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit a67ba97

Please sign in to comment.