Browse Source

gen: remove pointless "update"

libbpf is a submodule, so its version is already effectively pinned.
`xtask codegen` also runs `git submodule update` which reverts the
action of updating to `origin/HEAD`. Remove the cruft.
Tamir Duberstein 1 tháng trước cách đây
mục cha
commit
83b791223f
1 tập tin đã thay đổi với 3 bổ sung8 xóa
  1. 3 8
      .github/workflows/gen.yml

+ 3 - 8
.github/workflows/gen.yml

@@ -11,14 +11,6 @@ jobs:
         with:
           submodules: recursive
 
-      - name: update libbpf
-        working-directory: xtask/libbpf
-        run: |
-          set -euxo pipefail
-          git fetch origin
-          git checkout origin/HEAD
-          echo "LIBBPF_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
-
       - uses: dtolnay/rust-toolchain@nightly
         with:
           components: rustfmt, clippy
@@ -34,6 +26,9 @@ jobs:
       - run: cargo xtask codegen
       - run: cargo xtask public-api --bless
 
+      - run: echo "LIBBPF_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
+        working-directory: xtask/libbpf
+
       - uses: peter-evans/create-pull-request@v7
         with:
           branch: create-pull-request/codegen