ci #57
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| workflow_dispatch: | |
| push: | |
| env: | |
| DOCKER_IMAGE_NAME: ghcr.io/gizmodata/gizmosql | |
| jobs: | |
| build-project-macos: | |
| name: Build Project - MacOS | |
| strategy: | |
| matrix: | |
| include: | |
| - platform: amd64 | |
| os: macos | |
| runner: macos-14 | |
| - platform: arm64 | |
| os: macos | |
| runner: macos-14-xlarge | |
| runs-on: ${{ matrix.runner }} | |
| env: | |
| zip_file_name: gizmosql_cli_${{ matrix.os }}_${{ matrix.platform }}.zip | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install build requirements | |
| env: | |
| HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
| run: | | |
| brew install automake boost gflags | |
| - name: Configure Project | |
| uses: threeal/[email protected] | |
| with: | |
| generator: Ninja | |
| run-build: true | |
| - name: Sign and notarize the server release build | |
| uses: toitlang/[email protected] | |
| with: | |
| certificate: ${{ secrets.APPLE_CERTIFICATE }} | |
| certificate-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} | |
| username: ${{ secrets.APPLE_ID_USERNAME }} | |
| password: ${{ secrets.APPLE_ID_PASSWORD }} | |
| apple-team-id: ${{ secrets.APPLE_TEAM_ID }} | |
| app-path: build/gizmosql_server | |
| entitlements-path: macos/entitlements.plist | |
| - name: Sign and notarize the server release build | |
| uses: toitlang/[email protected] | |
| with: | |
| certificate: ${{ secrets.APPLE_CERTIFICATE }} | |
| certificate-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} | |
| username: ${{ secrets.APPLE_ID_USERNAME }} | |
| password: ${{ secrets.APPLE_ID_PASSWORD }} | |
| apple-team-id: ${{ secrets.APPLE_TEAM_ID }} | |
| app-path: build/gizmosql_client | |
| - name: Zip artifacts | |
| run: | | |
| mv build/gizmosql_server build/gizmosql_client . | |
| zip -j ${{ env.zip_file_name }} gizmosql_server gizmosql_client | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.zip_file_name }} | |
| path: | | |
| ${{ env.zip_file_name }} | |
| build-project-linux: | |
| name: Build Project - Linux | |
| strategy: | |
| matrix: | |
| include: | |
| - platform: amd64 | |
| os: linux | |
| runner: buildjet-8vcpu-ubuntu-2204 | |
| - platform: arm64 | |
| os: linux | |
| runner: buildjet-8vcpu-ubuntu-2204-arm | |
| runs-on: ${{ matrix.runner }} | |
| env: | |
| zip_file_name: gizmosql_cli_${{ matrix.os }}_${{ matrix.platform }}.zip | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install build requirements | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| ninja-build \ | |
| automake \ | |
| cmake \ | |
| gcc \ | |
| git \ | |
| libboost-all-dev \ | |
| libgflags-dev | |
| sudo apt-get clean | |
| sudo rm -rf /var/lib/apt/lists/* | |
| - name: Configure Project | |
| uses: threeal/[email protected] | |
| with: | |
| generator: Ninja | |
| run-build: true | |
| - name: Zip artifacts | |
| run: | | |
| mv build/gizmosql_server build/gizmosql_client . | |
| zip -j ${{ env.zip_file_name }} gizmosql_server gizmosql_client | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.zip_file_name }} | |
| path: | | |
| ${{ env.zip_file_name }} | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create GizmoSQL License JWT file | |
| run: | | |
| echo -n ${{ secrets.LICENSE_JWT }} > /home/runner/license.jwt | |
| - name: Build and push full Docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: linux/${{ matrix.platform }} | |
| file: Dockerfile.ci | |
| push: ${{ startsWith(github.ref, 'refs/tags/') }} | |
| secret-files: | | |
| license_jwt=/home/runner/license.jwt | |
| tags: | | |
| ${{ env.DOCKER_IMAGE_NAME }}:latest-${{ matrix.platform }} | |
| ${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-${{ matrix.platform }} | |
| no-cache: true | |
| provenance: false | |
| - name: Build and push slim Docker image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: linux/${{ matrix.platform }} | |
| file: Dockerfile-slim.ci | |
| push: ${{ startsWith(github.ref, 'refs/tags/') }} | |
| tags: | | |
| ${{ env.DOCKER_IMAGE_NAME }}:latest-${{ matrix.platform }}-slim | |
| ${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-${{ matrix.platform }}-slim | |
| no-cache: true | |
| provenance: false | |
| create-release: | |
| name: Create a release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: [build-project-macos, build-project-linux] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Download All Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: artifacts | |
| pattern: gizmosql_cli_*.zip | |
| merge-multiple: true | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| artifacts/gizmosql_cli_*.zip | |
| LICENSE | |
| update-image-manifest: | |
| name: Update DockerHub image manifest to include all built platforms | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: build-project-linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Create and push full manifest images | |
| uses: Noelware/docker-manifest-action@master # or use a pinned version in the Releases tab | |
| with: | |
| inputs: ${{ env.DOCKER_IMAGE_NAME }}:latest,${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }} | |
| images: ${{ env.DOCKER_IMAGE_NAME }}:latest-amd64,${{ env.DOCKER_IMAGE_NAME }}:latest-arm64 | |
| push: true | |
| - name: Create and push slim manifest images | |
| uses: Noelware/docker-manifest-action@master # or use a pinned version in the Releases tab | |
| with: | |
| inputs: ${{ env.DOCKER_IMAGE_NAME }}:latest-slim,${{ env.DOCKER_IMAGE_NAME }}:${{ github.ref_name }}-slim | |
| images: ${{ env.DOCKER_IMAGE_NAME }}:latest-amd64-slim,${{ env.DOCKER_IMAGE_NAME }}:latest-arm64-slim | |
| push: true |