mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 15:38:55 +01:00
09a94e0db3
even though docker cache was being used earlier for uffizzi builds, seems like the cache layers weren't persisting. This commit adds changes to move meilisearch building outside the dockerfile so that we can use the rust cache action. We are also building to the musl target so that the binary for meilisearch which is created can be used for the uffizzi ttyd image which uses alpine.
103 lines
3.9 KiB
YAML
103 lines
3.9 KiB
YAML
name: Uffizzi - Deploy Preview
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- "Uffizzi - Build PR Image"
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
cache-compose-file:
|
|
name: Cache Compose File
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
outputs:
|
|
compose-file-cache-key: ${{ env.COMPOSE_FILE_HASH }}
|
|
pr-number: ${{ env.PR_NUMBER }}
|
|
expected-url: ${{ env.EXPECTED_URL }}
|
|
steps:
|
|
- name: 'Download artifacts'
|
|
# Fetch output (zip archive) from the workflow run that triggered this workflow.
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
run_id: context.payload.workflow_run.id,
|
|
});
|
|
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
|
|
return artifact.name == "preview-spec"
|
|
})[0];
|
|
let download = await github.rest.actions.downloadArtifact({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
artifact_id: matchArtifact.id,
|
|
archive_format: 'zip',
|
|
});
|
|
let fs = require('fs');
|
|
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/preview-spec.zip`, Buffer.from(download.data));
|
|
|
|
- name: 'Unzip artifact'
|
|
run: unzip preview-spec.zip
|
|
|
|
- name: Read Event into ENV
|
|
run: |
|
|
echo 'EVENT_JSON<<EOF' >> $GITHUB_ENV
|
|
cat event.json >> $GITHUB_ENV
|
|
echo 'EOF' >> $GITHUB_ENV
|
|
|
|
- name: Hash Rendered Compose File
|
|
id: hash
|
|
# If the previous workflow was triggered by a PR close event, we will not have a compose file artifact.
|
|
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
|
|
run: echo "COMPOSE_FILE_HASH=$(md5sum docker-compose.rendered.yml | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
|
|
- name: Cache Rendered Compose File
|
|
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }}
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: docker-compose.rendered.yml
|
|
key: ${{ env.COMPOSE_FILE_HASH }}
|
|
|
|
- name: Read PR Number From Event Object
|
|
id: pr
|
|
run: echo "PR_NUMBER=${{ fromJSON(env.EVENT_JSON).number }}" >> $GITHUB_ENV
|
|
|
|
- name: DEBUG - Print Job Outputs
|
|
if: ${{ runner.debug }}
|
|
run: |
|
|
echo "PR number: ${{ env.PR_NUMBER }}"
|
|
echo "Compose file hash: ${{ env.COMPOSE_FILE_HASH }}"
|
|
cat event.json
|
|
|
|
- name: Add expected URL env var
|
|
if: ${{ runner.debug }}
|
|
run: |
|
|
REPO=$(echo ${{ github.repository }} | sed 's/\./+/g')
|
|
echo "EXPECTED_URL=${{ inputs.server }}/github.com/$REPO/pull/${{ env.PR_NUMBER }}" >> $GITHUB_ENV
|
|
|
|
deploy-uffizzi-preview:
|
|
name: Use Remote Workflow to Preview on Uffizzi
|
|
needs:
|
|
- cache-compose-file
|
|
uses: UffizziCloud/preview-action/.github/workflows/reusable.yaml@v2
|
|
with:
|
|
# If this workflow was triggered by a PR close event, cache-key will be an empty string
|
|
# and this reusable workflow will delete the preview deployment.
|
|
compose-file-cache-key: ${{ needs.cache-compose-file.outputs.compose-file-cache-key }}
|
|
compose-file-cache-path: docker-compose.rendered.yml
|
|
server: https://app.uffizzi.com
|
|
pr-number: ${{ needs.cache-compose-file.outputs.pr-number }}
|
|
description: |
|
|
The meilisearch preview environment contains a web terminal from where you can run the
|
|
`meilisearch` command. You should be able to access this instance of meilisearch running in
|
|
the preview from the link Meilisearch Endpoint link given below.
|
|
|
|
Web Terminal Endpoint : <uffizzi-url>
|
|
Meilisearch Endpoint : <uffizzi-url>/meilisearch
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
id-token: write |