Update devel_images.yml #35
This file contains 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: Build/Push Development Images | |
env: | |
LC_ALL: "C.UTF-8" # prevent ERROR: Ansible could not initialize the preferred locale: unsupported locale setting | |
on: | |
push: | |
branches: | |
- devel | |
- release_* | |
- feature_* | |
jobs: | |
push-development-images: | |
timeout-minutes: 120 | |
permissions: | |
packages: write | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
build-targets: | |
- image-name: awx_devel | |
make-target: docker-compose-buildx | |
- image-name: awx_kube_devel | |
make-target: awx-kube-dev-buildx | |
- image-name: awx | |
make-target: awx-kube-buildx | |
os: [macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Skipping build of awx image for non-awx repository | |
run: | | |
echo "Skipping build of awx image for non-awx repository" | |
exit 0 | |
if: matrix.build-targets.image-name == 'awx' && !endsWith(github.repository, '/awx') | |
- uses: actions/checkout@v3 | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v3 | |
- name: Setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
if: matrix.os == 'macos-14' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Install brew | |
run: | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
if: matrix.os == 'macos-14' | |
- name: Update bash | |
run: | | |
brew install bash | |
sudo bash -c "echo /usr/local/bin/bash >> /etc/shells" | |
chsh -s /usr/local/bin/bash | |
if: matrix.os == 'macos-14' | |
- name: Set GITHUB_ENV variables | |
run: | | |
echo "DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER,,}" >> $GITHUB_ENV | |
echo "COMPOSE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV | |
env: | |
OWNER: '${{ github.repository_owner }}' | |
- name: Install python ${{ env.py_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.py_version }} | |
- name: Log in to registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Setup node and npm | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.13.1' | |
if: matrix.build-targets.image-name == 'awx' | |
- name: Prebuild UI for awx image (to speed up build process) | |
run: | | |
sudo apt-get install gettext | |
make ui-release | |
make ui-next | |
if: matrix.build-targets.image-name == 'awx' | |
- name: Build and push AWX devel images | |
run: | | |
make ${{ matrix.build-targets.make-target }} |