diff --git a/.github/workflows/bcny-firebase.yml b/.github/workflows/bcny-firebase.yml index 37f33a10c7..529bdfb82c 100644 --- a/.github/workflows/bcny-firebase.yml +++ b/.github/workflows/bcny-firebase.yml @@ -1,6 +1,7 @@ name: firebase on: + pull_request: workflow_dispatch: jobs: @@ -19,62 +20,48 @@ jobs: steps: - uses: actions/checkout@v3 with: - fetch-depth: 1 - path: ${{ github.workspace }}/SourceCache/firebase-cpp-sdk + submodules: false ref: refs/heads/compnerd/swift repository: thebrowsercompany/firebase-cpp-sdk - - uses: compnerd/gha-setup-vsdevenv@main - with: - host_arch: amd64 - components: 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64;Microsoft.VisualStudio.Component.VC.Tools.ARM64' - arch: ${{ matrix.arch }} - - uses: actions/setup-python@v4 id: python with: - python-version: 3.9 + python-version: 3.7 architecture: 'x64' - - name: Install absl-py - run: pip install absl-py + - name: Run Python Setup + run: | + python3 -m pip install -r .\external\pip_requirements.txt --user + + - name: Remove Strawberry + run: "rm -r C:\\Strawberry" - - name: Configure firebase + - name: Build SDK run: - cmake -B ${{ github.workspace }}/BinaryCache/firebase ` - -D BUILD_SHARED_LIBS=NO ` - -D CMAKE_BUILD_TYPE=Release ` - -D CMAKE_INSTALL_PREFIX=${{ github.workspace }}/BuildRoot/Library/firebase/usr ` - -G "Visual Studio 17 2022" ` - -A ${{ matrix.platform }} ` - -S ${{ github.workspace }}/SourceCache/firebase-cpp-sdk ` - -D FIREBASE_CPP_BUILD_PACKAGE=YES ` - -D FIREBASE_GITHUB_ACTION_BUILD=YES ` - -D FIREBASE_INCLUDE_LIBRARY_DEFAULT=OFF ` - -D FIREBASE_INCLUDE_AUTH=YES ` - -D FIREBASE_INCLUDE_FIRESTORE=YES ` - -D FIREBASE_USE_BORINGSSL=YES ` - -D MSVC_RUNTIME_LIBRARY_STATIC=NO ` - -D Python3_EXECUTABLE=${{ steps.python.outputs.python-path }} - - name: Build firebase - run: cmake --build ${{ github.workspace }}/BinaryCache/firebase --config Release - - name: Install firebase - run: cmake --build ${{ github.workspace }}/BinaryCache/firebase --config Release --target install - - name: Install firebase (manual) - run: | - Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/firestore_errors.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/firestore_errors.h" - Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/geo_point.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/geo_point.h" - Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/timestamp.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/timestamp.h" + python3 .\scripts\gha\build_desktop.py --arch "${{ matrix.arch }}" --config "Release" --msvc_runtime_library "dynamic" --gha_build - Write-Host "Copying static libraries ..." - $source = "${{ github.workspace }}/BinaryCache/firebase" - $libraries = Get-ChildItem -Path $source -File -Recurse -Filter *.lib - foreach ($library in $libraries) { - $destination = Join-Path -Path "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows" -ChildPath $library.Name - Copy-Item -Path $library.FullName -Destination $destination -Force - Write-Host "... copied ${destination}" - } - - uses: actions/upload-artifact@v3 - with: - name: firebase-windows-${{ matrix.arch }} - path: ${{ github.workspace }}/BuildRoot/Library/firebase + - name: List structure + run: dir . + # - name: Build firebase + # run: cmake --build ${{ github.workspace }}/BinaryCache/firebase --config Release + # - name: Install firebase + # run: cmake --build ${{ github.workspace }}/BinaryCache/firebase --config Release --target install + # - name: Install firebase (manual) + # run: | + # Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/firestore_errors.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/firestore_errors.h" + # Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/geo_point.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/geo_point.h" + # Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/timestamp.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/timestamp.h" + + # Write-Host "Copying static libraries ..." + # $source = "${{ github.workspace }}/BinaryCache/firebase" + # $libraries = Get-ChildItem -Path $source -File -Recurse -Filter *.lib + # foreach ($library in $libraries) { + # $destination = Join-Path -Path "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows" -ChildPath $library.Name + # Copy-Item -Path $library.FullName -Destination $destination -Force + # Write-Host "... copied ${destination}" + # } + # - uses: actions/upload-artifact@v3 + # with: + # name: firebase-windows-${{ matrix.arch }} + # path: ${{ github.workspace }}/BuildRoot/Library/firebase