Skip to content

Commit

Permalink
BUILD: If running CI for Linux, then install multilib.
Browse files Browse the repository at this point in the history
This is required when building for architectures other than the system one.
  • Loading branch information
ben51degrees committed May 18, 2023
1 parent b8ae17a commit e4834f7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ci/setup-environment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ if ($BuildMethod -eq "msbuild") {
./environments/setup-msbuild.ps1

}

if ($IsLinux) {

# Install multilib, as this may be required.
sudo apt-get install -y gcc-multilib

}

0 comments on commit e4834f7

Please sign in to comment.