clean up on .sln and .csproj files to account for x86, x64 or arm64 p… #79
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - "docs" | |
| - "**/*.md" | |
| pull_request: | |
| paths-ignore: | |
| - "docs" | |
| - "**/*.md" | |
| jobs: | |
| lfs: | |
| name: LuaFileSystem (${{ matrix.lua-version }} ${{ matrix.arch }}) | |
| strategy: | |
| matrix: | |
| lua-version: | |
| - 5.1.5 | |
| - 5.2.4 | |
| - 5.3.6 | |
| - 5.4.7 | |
| arch: | |
| - x64 | |
| - x86 | |
| uses: ./.github/workflows/lfs.yaml | |
| with: | |
| lua-version: ${{ matrix.lua-version }} | |
| arch: ${{ matrix.arch }} | |
| lfs-arm64: | |
| name: LuaFileSystem (${{ matrix.lua-version }} ARM64) | |
| strategy: | |
| matrix: | |
| lua-version: | |
| - 5.1.5 | |
| - 5.2.4 | |
| - 5.3.6 | |
| - 5.4.7 | |
| uses: ./.github/workflows/lfs-arm64.yaml | |
| with: | |
| lua-version: ${{ matrix.lua-version }} | |
| lgi: | |
| name: LGI (${{ matrix.lua-version }} GTK ${{ matrix.gtk-major-version }}) | |
| strategy: | |
| matrix: | |
| lua-version: | |
| - 5.1.5 | |
| - 5.2.4 | |
| - 5.3.6 | |
| - 5.4.7 | |
| gtk-major-version: | |
| - 3 | |
| - 4 | |
| uses: ./.github/workflows/lgi.yaml | |
| with: | |
| lua-version: ${{ matrix.lua-version }} | |
| gtk-major-version: ${{ matrix.gtk-major-version }} | |
| release: | |
| name: Release ${{ matrix.arch }} | |
| strategy: | |
| matrix: | |
| arch: | |
| - x64 | |
| - x86 | |
| uses: ./.github/workflows/release.yaml | |
| if: ${{ github.ref_name == 'release' || startsWith(github.ref, 'refs/tags/') }} | |
| with: | |
| arch: ${{ matrix.arch }} | |
| needs: | |
| - lfs | |
| - lfs-arm64 | |
| - lgi | |
| release-arm64: | |
| name: Release arm64 | |
| uses: ./.github/workflows/release-arm64.yaml | |
| if: ${{ github.ref_name == 'release' || startsWith(github.ref, 'refs/tags/') }} | |
| needs: | |
| - lfs | |
| - lfs-arm64 | |
| - lgi |