Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
permissions:
packages: write
timeout-minutes: 120
name: "Push images as cache to GitHub Registry"
name: "Push Image Cache"
runs-on: ${{ fromJson(needs.build-info.outputs.runsOn) }}
needs:
- build-info
Expand Down Expand Up @@ -1687,7 +1687,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
- name: "Start ARM instance"
run: ./scripts/ci/images/ci_start_arm_instance_and_connect_to_docker.sh
if: matrix.platform == 'linux/arm64'
- name: "Build & Push CI image ${{ matrix.python-version }}:latest"
- name: "Push CI cache ${{ matrix.python-version }} ${{ matrix.platform }}"
run: >
breeze build-image
--prepare-buildx-cache
Expand Down Expand Up @@ -1717,7 +1717,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
VERSION_SUFFIX_FOR_PYPI: "dev0"
- name: "Move dist packages to docker-context files"
run: mv -v ./dist/*.whl ./docker-context-files
- name: Build & Push PROD image ${{ env.PYTHON_MAJOR_MINOR_VERSION }}:latest
- name: "Push PROD cache ${{ matrix.python-version }} ${{ matrix.platform }}"
run: >
breeze build-prod-image
--airflow-is-in-context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ SCRIPTS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
# This is an AMI that is based on Basic Amazon Linux AMI with installed and configured docker service
WORKING_DIR="/tmp/armdocker"
INSTANCE_INFO="${WORKING_DIR}/instance_info.json"
ARM_AMI="ami-002fa24639ab2520a"
INSTANCE_TYPE="c6gd.medium"
ARM_AMI="ami-06b8158ea372d3259"
INSTANCE_TYPE="c6g.xlarge"
MARKET_OPTIONS="MarketType=spot,SpotOptions={MaxPrice=0.1,SpotInstanceType=one-time}"
REGION="us-east-2"
EC2_USER="ec2-user"
Expand Down