Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
deathkiller committed Oct 20, 2024
1 parent e76d171 commit ea1f340
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:

- name: 'Create Build Environment'
run: |
sudo apt-get update -y
sudo apt-get install -y cmake curl g++ libgl1-mesa-dev libopenmpt-dev
sudo apt update -y
sudo apt install -y cmake curl g++ libgl1-mesa-dev libopenmpt-dev
- name: 'Configure CMake'
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:

- name: 'Create Build Environment'
run: |
sudo apt-get update -y
sudo apt-get install -y cmake curl g++ libgl1-mesa-dev libopenmpt-dev rpm
sudo apt update -y
sudo apt install -y cmake curl g++ libgl1-mesa-dev libopenmpt-dev rpm
- if: matrix.CC == 'clang'
name: 'Configure Clang Compiler'
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/linux_cc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ jobs:
with:
fetch-depth: 0

- name: 'Configure Cross-Compile Support (ARM64)'
uses: cyberjunk/gha-ubuntu-cross@v4
with:
arch: arm64

- name: 'Create Build Environment'
run: |
sudo apt update -y
sudo apt install crossbuild-essential-arm64
sudo dpkg --add-architecture arm64
sudo apt install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu binutils-aarch64-linux-gnu
sudo apt install -y cmake curl libgl1-mesa-dev:arm64 libopenmpt-dev:arm64 zlib1g:arm64
sudo apt install -y cmake curl
sudo apt install -y libgl1-mesa-dev:arm64 libglfw3-dev:arm64 libsdl2-dev:arm64 libopenal-dev:arm64 libopenmpt-dev:arm64 zlib1g:arm64
- name: 'Configure CMake'
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux_legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:

- name: 'Create Build Environment'
run: |
sudo apt-get update -y
sudo apt-get install -y cmake curl g++ libgl1-mesa-dev libglew-dev libglfw3-dev libsdl2-dev libopenal-dev libopenmpt-dev rpm
sudo apt update -y
sudo apt install -y cmake curl g++ libgl1-mesa-dev libglew-dev libglfw3-dev libsdl2-dev libopenal-dev libopenmpt-dev rpm
- name: 'Configure CMake'
run: |
Expand Down

0 comments on commit ea1f340

Please sign in to comment.