Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
is-this-c authored Feb 10, 2025
1 parent aede5b3 commit 02faabc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ on:
env:
BUILD_TYPE: Release
SCCACHE_GHA_ENABLED: "true"

jobs:
build-mingw:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
- uses: mozilla-actions/sccache-action@v0.0.7

- name: Install packages
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install --no-install-recommends g++-mingw-w64-i686-posix ninja-build wine32 wine
- name: Create build environment
run: cmake -E make_directory ${{ github.workspace }}/build

Expand All @@ -38,10 +38,10 @@ jobs:
- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . -j $(nproc)

build-msvc:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: mozilla-actions/sccache-action@v0.0.7
Expand All @@ -53,7 +53,7 @@ jobs:
run: |
$vs = (Get-CimInstance MSFT_VSInstance -Namespace root/cimv2/vs).InstallLocation
Write-Output VS_DEV_SHELL=$vs\Common7\Tools\Launch-VsDevShell.ps1 >> $env:GITHUB_ENV
- name: Create build environment
run: cmake -E make_directory ${{ github.workspace }}\build

Expand All @@ -71,5 +71,5 @@ jobs:
- name: Build
working-directory: ${{ github.workspace }}/build
run: |
&$env:VS_DEV_SHELL -HostArch amd64 -Arch x86 -SkipAutomaticLocation
&$env:VS_DEV_SHELL -HostArch amd64 -Arch x86 -SkipAutomaticLocation
cmake --build . -j $env:NUMBER_OF_PROCESSORS

0 comments on commit 02faabc

Please sign in to comment.