.github/workflows/build_bundles.yml
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sun, 14 Aug 2022 22:45:52 +0200
changeset 99 0623d6d4616b
parent 97 4dd65c75e651
child 122 ef1c44f741e3
permissions -rw-r--r--
GH CD: chechout all projects, even self from prep_sources.yml so that revisions.txt is not too old for Makefile.
name: Build windows installer in Docker

on:
  workflow_dispatch:
  # push:
  #   branches: [ default ]

jobs:
  sources:
    uses: ./.github/workflows/prep_sources.yml

  build:
    needs: sources
    runs-on: ubuntu-latest

    steps:

    - name: Download source artifact
      uses: actions/download-artifact@v3
      with:
        name: source_package

    - name: untar files
      run: tar -xvf sources.tar

    - name: Cache docker image
      id: cache-docker
      uses: actions/cache@v3
      env:
        cache-name: cache-docker
      with:
        path: /tmp/latest.tar
        key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('beremiz_public_dist/Dockerfile', 'beremiz_public_dist/*.sh') }}

    - if: ${{ steps.cache-docker.outputs.cache-hit == false }}
      name: Create docker image
      run: |
        cd beremiz_public_dist
        ./build_docker_image.sh
        docker image save --output="/tmp/latest.tar" beremiz_public_builder

    - if: ${{ steps.cache-docker.outputs.cache-hit != false }}
      name: Re-use docker image
      run: |
        docker image load --input="/tmp/latest.tar" 

    - name: Create docker container
      run: |
        cd beremiz_public_dist
        ./create_docker_container.sh ${{ github.workspace }}/build

    - name: Run build in docker
      run: |
        cd beremiz_public_dist
        # override HG revision IDs in Makefile
        ./build_in_docker.sh \
            beremiz_revisionid=stamp \
            matiec_revisionid=stamp \
            canfestival_revisionid=stamp \
            Modbus_revisionid=stamp \
            open62541_revisionid=stamp

    - name: Upload built artifact
      uses: actions/upload-artifact@v3
      with:
        name: windows_bundles
        path: |
          ${{ github.workspace }}/build/Beremiz-*.exe
          ${{ github.workspace }}/build/Beremiz-*.zip
        retention-days: 5