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

View File

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