mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
The CI don't wait anymore on other builds to trigger release preparation workflow. It's up to the team to be sure that builds are passing before pushing a new version tag on default branch. In addition build workflows will run only when there is push on default branch. Nothing will happend when a version tag is pushed now.
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
# Start all AWS build jobs on Slab CI bot.
|
|
name: Start all AWS builds
|
|
|
|
on:
|
|
push:
|
|
branch:
|
|
- 'main'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
start-builds:
|
|
strategy:
|
|
matrix:
|
|
command: [cpu-build, gpu-build, docker-images-build]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Slab repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: zama-ai/slab
|
|
path: slab
|
|
token: ${{ secrets.CONCRETE_ACTIONS_TOKEN }}
|
|
|
|
- name: Start AWS job in Slab
|
|
shell: bash
|
|
# TODO: step result must be correlated to HTTP return code.
|
|
run: |
|
|
echo -n '{"command": "${{ matrix.command }}", "git_ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' > command.json
|
|
SIGNATURE="$(slab/scripts/hmac_calculator.sh command.json '${{ secrets.JOB_SECRET }}')"
|
|
curl -v -k \
|
|
-H "Content-Type: application/json" \
|
|
-H "X-Slab-Repository: ${{ github.repository }}" \
|
|
-H "X-Slab-Command: start_aws" \
|
|
-H "X-Hub-Signature-256: sha256=${SIGNATURE}" \
|
|
-d @command.json \
|
|
${{ secrets.SLAB_URL }}
|