diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index c924d751f..df2ae56a9 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -59,11 +59,11 @@ jobs: uses: actions/cache@v2 with: path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages - key: ${{ runner.os }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} + key: Linux-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --yes --verbose + run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --verbose --yes # Build the engine - name: Build Nazara diff --git a/.github/workflows/msys2-build.yml b/.github/workflows/msys2-build.yml index f8cb3d063..7400a2b75 100644 --- a/.github/workflows/msys2-build.yml +++ b/.github/workflows/msys2-build.yml @@ -68,11 +68,11 @@ jobs: uses: actions/cache@v2 with: path: ${{ env.XMAKE_GLOBALDIR }}\.xmake\packages - key: ${{ runner.os }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} + key: MinGW-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --yes --verbose + run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --verbose --yes # Build the engine - name: Build Nazara diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 86ccbdaf4..0131c28cf 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -51,11 +51,11 @@ jobs: uses: actions/cache@v2 with: path: ${{ env.XMAKE_GLOBALDIR }}\.xmake\packages - key: ${{ runner.os }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} + key: MSVC-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }} # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake.exe config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --yes --verbose + run: xmake.exe config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --verbose --yes # Build the engine - name: Build Nazara