Format workflows

This commit is contained in:
Alexander Batalov 2022-07-26 16:49:10 +03:00
parent 6a6d691b8d
commit 42376b7172
2 changed files with 20 additions and 7 deletions

View File

@ -3,14 +3,14 @@ name: Build
on:
push:
paths:
- '.github/workflows/Build.yml'
- '.github/workflows/ci-build.yml'
- 'src/**.cc'
- 'src/**.h'
- '**/CMakeLists.txt'
- '**/*.cmake'
pull_request:
paths:
- '.github/workflows/Build.yml'
- '.github/workflows/ci-build.yml'
- 'src/**.cc'
- 'src/**.h'
- '**/CMakeLists.txt'
@ -93,7 +93,10 @@ jobs:
- name: Build
run: |
cmake --build build -j $(nproc)
cmake \
--build build \
-j $(nproc) \
# EOL
- name: Upload
uses: actions/upload-artifact@v3
@ -119,17 +122,24 @@ jobs:
- name: Configure
run: |
cmake -B build -D CMAKE_BUILD_TYPE=RelWithDebInfo
cmake \
-B build \
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
# EOL
- name: Build
run: |
cmake --build build -j $(sysctl -n hw.physicalcpu) --target package
cmake \
--build build \
-j $(sysctl -n hw.physicalcpu) \
--target package \
# EOL
- name: Upload
uses: actions/upload-artifact@v3
with:
name: fallout2-ce-macos.dmg
path: build/_CPack_Packages/Darwin/DragNDrop/fallout2-ce/fallout2-ce.dmg
path: build/fallout2-ce.dmg
retention-days: 7
windows:

View File

@ -65,7 +65,10 @@ jobs:
- name: Build
run: |
cmake --build build -j $(nproc)
cmake \
--build build \
-j $(nproc) \
# EOL
- name: Upload
run: |