Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
unvermuthet committed Feb 16, 2025
1 parent 2566fe5 commit 80d8b8d
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ jobs:
target-type: [template_debug] # you can add "template_release" here
target:
[
{ platform: linux, arch: x86_64, os: ubuntu-24.04 },
{ platform: windows, arch: x86_64, os: windows-latest },
{ platform: windows, arch: x86_32, os: windows-latest },
{ platform: macos, arch: universal, os: macos-latest },
{ platform: ios, arch: arm64, os: macos-latest },
{ platform: android, arch: arm64, os: ubuntu-24.04 },
{ platform: android, arch: arm32, os: ubuntu-24.04 },
{ platform: android, arch: x86_64, os: ubuntu-24.04 },
{ platform: android, arch: x86_32, os: ubuntu-24.04 },
{ platform: web, arch: wasm32, os: ubuntu-24.04 }
{ platform: linux, arch: x86_64, os: ubuntu-24.04 },
{ platform: windows, arch: x86_64, os: windows-latest },
{ platform: windows, arch: x86_32, os: windows-latest },
{ platform: macos, arch: universal, os: macos-latest },
{ platform: ios, arch: arm64, os: macos-latest },
{ platform: android, arch: arm64, os: ubuntu-24.04 },
{ platform: android, arch: arm32, os: ubuntu-24.04 },
{ platform: android, arch: x86_64, os: ubuntu-24.04 },
{ platform: android, arch: x86_32, os: ubuntu-24.04 },
{ platform: web, arch: wasm32, os: ubuntu-24.04 },
]
include: # Also build a release version for these specific targets
- target: { platform: linux, arch: x86_64, os: ubuntu-24.04 }
- float-precision: single
target-type: template_release
float-precision: single
- target: { platform: linux, arch: x86_64, os: ubuntu-24.04 }
target: { platform: linux, arch: x86_64, os: ubuntu-24.04 }

- float-precision: double
target-type: template_release
float-precision: double
target: { platform: linux, arch: x86_64, os: ubuntu-24.04 }

runs-on: ${{ matrix.target.os }}
steps:
# Clone this repository
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: godot-cpp-template-${{ matrix.target.platform }}-${{ matrix.target.arch }}-${{ matrix.target.float-precision }}-${{ matrix.target.target-type }}
name: godot-cpp-template-${{ matrix.target.platform }}-${{ matrix.target.arch }}-${{ matrix.float-precision }}-${{ matrix.target-type }}
path: |
${{ github.workspace }}/bin/**
Expand Down

0 comments on commit 80d8b8d

Please sign in to comment.