Skip to content

Commit

Permalink
Install yasm.
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Oct 18, 2024
1 parent 07cc1e2 commit f98f64b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/android_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
- name: Setup Python and SCons
uses: ./.github/actions/godot-deps

- name: Install YASM
run: sudo apt-get update && sudo apt-get install -y yasm

- name: Compilation
uses: ./.github/actions/godot-build
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ios_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Setup Python and SCons
uses: ./.github/actions/godot-deps

- name: Install YASM
run: brew install yasm

- name: Compilation (arm64)
uses: ./.github/actions/godot-build
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ jobs:
if: '!matrix.legacy-scons'
uses: ./.github/actions/godot-deps

- name: Install YASM
run: sudo apt-get update && sudo apt-get install -y yasm

- name: Setup Python and SCons (legacy versions)
if: matrix.legacy-scons
uses: ./.github/actions/godot-deps
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- name: Setup Python and SCons
uses: ./.github/actions/godot-deps

- name: Install YASM
run: brew install yasm

- name: Setup Vulkan SDK
run: |
sh misc/scripts/install_vulkan_sdk_macos.sh
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/web_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
- name: Setup Python and SCons
uses: ./.github/actions/godot-deps

- name: Install YASM
run: sudo apt-get update && sudo apt-get install -y yasm

- name: Compilation
uses: ./.github/actions/godot-build
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
- name: Download Direct3D 12 SDK components
run: python ./misc/scripts/install_d3d12_sdk_windows.py

- name: Install YASM
run: choco install yasm

- name: Download pre-built ANGLE static libraries
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
Expand Down

0 comments on commit f98f64b

Please sign in to comment.