Skip to content

Commit

Permalink
ci: fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
june-fish committed Feb 14, 2024
1 parent 959bb48 commit 95d08f3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
dnf5 up -y
dnf5 install -y make gcc ccache flex bison elfutils-devel xz bc tar openssl-devel rpmbuild
- name: Checkout
uses: actions/checkout@v3
with:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup enviroment variables
run: |
run: |
echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV
echo "KERNEL_COMMIT=$(git rev-parse HEAD)" >> $GITHUB_ENV
- name: Setup ccache cache
uses: actions/cache@v3
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.platform }}-${{ env.KERNEL_COMMIT }}-${{ hashFiles('kernel.config') }}
restore-keys: |
ccache-${{ matrix.platform }}-${{ env.KERNEL_COMMIT }}-
ccache-${{ matrix.platform }}-
uses: actions/cache@v3
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.platform }}-${{ env.KERNEL_COMMIT }}-${{ hashFiles('kernel.config') }}
restore-keys: |
ccache-${{ matrix.platform }}-${{ env.KERNEL_COMMIT }}-
ccache-${{ matrix.platform }}-
- name: Make
run: make all
- name: Upload artifacts
Expand Down
2 changes: 1 addition & 1 deletion linux
Submodule linux updated from 54be6c to ceb6a6

0 comments on commit 95d08f3

Please sign in to comment.