| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- name: VCMI
- on:
- push:
- branches:
- - features/*
- pull_request:
- schedule:
- - cron: '0 2 * * *'
- workflow_dispatch:
- env:
- # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
- BUILD_TYPE: Release
- jobs:
- check_last_build:
- if: github.event.schedule != ''
- runs-on: ubuntu-latest
- outputs:
- skip_build: ${{ steps.check_if_built.outputs.skip_build }}
- defaults:
- run:
- shell: bash
- steps:
- - name: Get repo name
- id: get_repo_name
- run: echo "::set-output name=value::${GITHUB_REPOSITORY#*/}"
- - name: Get last successful build for ${{ github.sha }}
- uses: octokit/[email protected]
- id: get_last_scheduled_run
- with:
- route: GET /repos/{owner}/{repo}/actions/runs
- owner: ${{ github.repository_owner }}
- repo: ${{ steps.get_repo_name.outputs.value }}
- status: success
- per_page: 1
- head_sha: ${{ github.sha }}
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- - name: Check if successful build of the current commit exists
- id: check_if_built
- run: |
- if [ ${{ fromJson(steps.get_last_scheduled_run.outputs.data).total_count }} -gt 0 ]; then
- echo '::set-output name=skip_build::1'
- else
- echo '::set-output name=skip_build::0'
- fi
- - name: Cancel current run
- if: steps.check_if_built.outputs.skip_build == 1
- uses: octokit/[email protected]
- with:
- route: POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel
- owner: ${{ github.repository_owner }}
- repo: ${{ steps.get_repo_name.outputs.value }}
- run_id: ${{ github.run_id }}
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- - name: Wait for the run to be cancelled
- if: steps.check_if_built.outputs.skip_build == 1
- run: sleep 60
- build:
- needs: check_last_build
- if: always() && needs.check_last_build.skip_build != 1
- strategy:
- matrix:
- include:
- - platform: linux
- os: ubuntu-20.04
- test: 0
- preset: linux-clang-release
- - platform: linux
- os: ubuntu-20.04
- test: 0
- preset: linux-gcc-release
- - platform: mac-intel
- os: macos-12
- test: 0
- pack: 1
- extension: dmg
- preset: macos-conan-ninja-release
- conan_profile: macos-intel
- artifact_platform: intel
- - platform: mac-arm
- os: macos-12
- test: 0
- pack: 1
- extension: dmg
- preset: macos-arm-conan-ninja-release
- conan_profile: macos-arm
- artifact_platform: arm
- - platform: ios
- os: macos-12
- test: 0
- pack: 1
- extension: ipa
- preset: ios-release-conan
- conan_profile: ios-arm64
- - platform: mxe
- os: ubuntu-20.04
- mxe: i686-w64-mingw32.shared
- test: 0
- pack: 1
- cpack_args: -D CPACK_NSIS_EXECUTABLE=`which makensis`
- extension: exe
- cmake_args: -G Ninja
- - platform: msvc
- os: windows-latest
- test: 0
- pack: 1
- extension: exe
- preset: windows-msvc-release
- runs-on: ${{ matrix.os }}
- defaults:
- run:
- shell: bash
- steps:
- - uses: actions/checkout@v3
- with:
- submodules: recursive
- - name: Dependencies
- run: source '${{github.workspace}}/CI/${{matrix.platform}}/before_install.sh'
- env:
- MXE_TARGET: ${{ matrix.mxe }}
- VCMI_BUILD_PLATFORM: x64
- - name: Conan setup
- if: "${{ matrix.conan_profile != '' }}"
- run: |
- pip3 install conan
- conan profile new default --detect
- conan install . \
- --install-folder=conan-generated \
- --no-imports \
- --build=never \
- --profile:build=default \
- --profile:host=CI/conan/${{ matrix.conan_profile }} \
- --options with_apple_system_libs=True
- env:
- GENERATE_ONLY_BUILT_CONFIG: 1
- - name: Git branch name
- id: git-branch-name
- uses: EthanSK/git-branch-name-action@v1
- - name: Build Number
- run: |
- source '${{github.workspace}}/CI/get_package_name.sh'
- if [ '${{ matrix.artifact_platform }}' ]; then
- VCMI_PACKAGE_FILE_NAME+="-${{ matrix.artifact_platform }}"
- fi
- echo VCMI_PACKAGE_FILE_NAME="$VCMI_PACKAGE_FILE_NAME" >> $GITHUB_ENV
- echo VCMI_PACKAGE_NAME_SUFFIX="$VCMI_PACKAGE_NAME_SUFFIX" >> $GITHUB_ENV
- env:
- PULL_REQUEST: ${{ github.event.pull_request.number }}
- - name: Configure CMake
- if: "${{ matrix.preset == '' }}"
- run: |
- mkdir -p '${{github.workspace}}/out/build/${{matrix.preset}}'
- cd '${{github.workspace}}/out/build/${{matrix.preset}}'
- cmake \
- ../.. -GNinja \
- ${{matrix.cmake_args}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
- -DENABLE_TEST=${{matrix.test}} \
- -DPACKAGE_NAME_SUFFIX:STRING="$VCMI_PACKAGE_NAME_SUFFIX" \
- -DPACKAGE_FILE_NAME:STRING="$VCMI_PACKAGE_FILE_NAME"
- env:
- CC: ${{ matrix.cc }}
- CXX: ${{ matrix.cxx }}
- - name: CMake Preset
- if: "${{ matrix.preset != '' }}"
- run: |
- cmake --preset ${{ matrix.preset }}
- - name: Build
- if: "${{ matrix.preset == '' }}"
- run: |
- cmake --build '${{github.workspace}}/out/build/${{matrix.preset}}'
- - name: Build Preset
- if: "${{ matrix.preset != '' }}"
- run: |
- cmake --build --preset ${{matrix.preset}}
- - name: Test
- if: ${{ matrix.test == 1 && matrix.preset != ''}}
- run: |
- ctest --preset ${{matrix.preset}}
- - name: Pack
- id: cpack
- if: ${{ matrix.pack == 1 }}
- run: |
- cd '${{github.workspace}}/out/build/${{matrix.preset}}'
- CPACK_PATH=`which -a cpack | grep -m1 -v -i chocolatey`
- "$CPACK_PATH" -C ${{env.BUILD_TYPE}} ${{ matrix.cpack_args }}
- test -f '${{github.workspace}}/CI/${{matrix.platform}}/post_pack.sh' \
- && '${{github.workspace}}/CI/${{matrix.platform}}/post_pack.sh' '${{github.workspace}}' "$(ls '${{ env.VCMI_PACKAGE_FILE_NAME }}'.*)"
- rm -rf _CPack_Packages
- - name: Additional logs
- if: ${{ failure() && steps.cpack.outcome == 'failure' && matrix.platform == 'mxe' }}
- run: |
- cat '${{github.workspace}}/out/build/${{matrix.preset}}/_CPack_Packages/win32/NSIS/project.nsi'
- cat '${{github.workspace}}/out/build/${{matrix.preset}}/_CPack_Packages/win32/NSIS/NSISOutput.log'
- - name: Artifacts
- if: ${{ matrix.pack == 1 }}
- uses: actions/upload-artifact@v3
- with:
- name: ${{ env.VCMI_PACKAGE_FILE_NAME }} - ${{ matrix.platform }}
- path: |
- ${{github.workspace}}/**/${{ env.VCMI_PACKAGE_FILE_NAME }}.${{ matrix.extension }}
- - name: Upload build
- if: ${{ matrix.pack == 1 && (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/features/')) && matrix.platform != 'msvc' }}
- run: |
- cd '${{github.workspace}}/out/build/${{matrix.preset}}'
- source '${{github.workspace}}/CI/upload_package.sh'
- env:
- DEPLOY_RSA: ${{ secrets.DEPLOY_RSA }}
- PACKAGE_EXTENSION: ${{ matrix.extension }}
- - uses: act10ns/slack@v1
- with:
- status: ${{ job.status }}
- channel: '#notifications'
- env:
- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
- if: always()
- - name: Trigger Android
- uses: peter-evans/repository-dispatch@v1
- if: ${{ github.ref == 'refs/heads/develop' && matrix.platform == 'mxe' }}
- with:
- token: ${{ secrets.VCMI_ANDROID_ACCESS_TOKEN }}
- repository: vcmi/vcmi-android
- event-type: vcmi
|