refactor: Change Primary Key from ID to UUID for Locale #774
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: Lambda | |
| on: | |
| push: | |
| jobs: | |
| package: | |
| name: Lambda ZIP Package | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| package: | |
| - data-seeder | |
| - mailer | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| cache: pip | |
| cache-dependency-path: | | |
| **/pyproject.toml | |
| **/requirements*.txt | |
| - name: Prepare Python env | |
| run: | | |
| python -m pip install -U pip setuptools wheel | |
| - name: Create build info | |
| run: | | |
| bash scripts/build-info.sh | |
| - name: Create Lambda package | |
| run: | | |
| cd packages/dsw-${{ matrix.package }} | |
| make lambda-package | |
| - name: Check Lambda package compressed size | |
| run: | | |
| MAX_ZIPPED=$((250 * 1024 * 1024)) | |
| SIZE_BYTES=$(stat --printf="%s" "$ZIP") | |
| SIZE_MB=$((SIZE_BYTES / (1024 * 1024))) | |
| echo "Zipped size: $SIZE_BYTES bytes ($SIZE_MB MB)" | |
| if [ "$SIZE_BYTES" -gt "$MAX_ZIPPED" ]; then | |
| echo "❌ ZIP file exceeds 250 MB limit" | |
| exit 1 | |
| fi | |
| echo "✅ ZIP size within limit" | |
| env: | |
| ZIP: packages/dsw-${{ matrix.package }}/${{ matrix.package }}-lambda.zip | |
| - name: Check Lambda package uncompressed size | |
| run: | | |
| MAX_UNZIPPED=$((250 * 1024 * 1024)) | |
| TMPDIR=$(mktemp -d) | |
| unzip -q "$ZIP" -d "$TMPDIR" | |
| SIZE_BYTES=$(du -sb "$TMPDIR" | awk '{print $1}') | |
| SIZE_MB=$((SIZE_BYTES / (1024 * 1024))) | |
| rm -rf "$TMPDIR" | |
| echo "Unzipped size: $SIZE_BYTES bytes ($SIZE_MB MB)" | |
| if [ "$SIZE_BYTES" -gt "$MAX_UNZIPPED" ]; then | |
| echo "❌ Unzipped size exceeds 250 MB limit" | |
| exit 1 | |
| fi | |
| echo "✅ Unzipped size within Lambda limit" | |
| env: | |
| ZIP: packages/dsw-${{ matrix.package }}/${{ matrix.package }}-lambda.zip | |
| - name: Create artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.package }}-lambda.zip | |
| path: packages/dsw-${{ matrix.package }}/${{ matrix.package }}-lambda.zip |