CI: missing workflow file changes for previous commit
This commit is contained in:
parent
ad052fe0c1
commit
aa71ce06cf
1 changed files with 6 additions and 6 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
|
@ -21,7 +21,7 @@ env:
|
|||
# working-directory: ${{ github.workspace }}
|
||||
jobs:
|
||||
clang_tidy:
|
||||
if: ${{ false }}
|
||||
# if: ${{ false }}
|
||||
name: Clang Tidy
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
run: ./scripts/run_clang_tidy.sh
|
||||
|
||||
build_for_linux:
|
||||
if: ${{ false }}
|
||||
# if: ${{ false }}
|
||||
name: Linux Ubuntu 22.04
|
||||
runs-on: ubuntu-22.04 # abseil (libabsl) is not available in 20.04 repository
|
||||
steps:
|
||||
|
|
@ -146,10 +146,10 @@ jobs:
|
|||
)
|
||||
cmake "${options[@]}"
|
||||
- name: Package bundles
|
||||
# if: ${{ github.ref_type == 'tag' }}
|
||||
if: ${{ github.ref_type == 'tag' }}
|
||||
run: ./scripts/package-osx-bundles.sh
|
||||
- name: Create installer
|
||||
# if: ${{ github.ref_type == 'tag' }}
|
||||
if: ${{ github.ref_type == 'tag' }}
|
||||
working-directory: ${{ github.workspace }}/build
|
||||
run: |
|
||||
options=(
|
||||
|
|
@ -161,14 +161,14 @@ jobs:
|
|||
)
|
||||
productbuild "${options[@]}"
|
||||
- name: Upload
|
||||
# if: ${{ github.ref_type == 'tag' }}
|
||||
if: ${{ github.ref_type == 'tag' }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: macOS package
|
||||
path: "${{ github.workspace }}/build/${{ env.install_name }}.pkg"
|
||||
|
||||
build_for_windows:
|
||||
if: ${{ false }}
|
||||
# if: ${{ false }}
|
||||
name: Windows 2019
|
||||
runs-on: windows-2019
|
||||
strategy:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue