Skip to content

Commit

Permalink
test dev
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Sep 5, 2023
1 parent b675d0c commit 2f777e1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 119 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ on:
# build and push anytime commits are merged to devel
branches:
- devel
schedule:
# build every 12 hours
- cron: '0 */12 * * *'
workflow_dispatch:

jobs:
build_and_push_latest:
Expand All @@ -29,9 +27,9 @@ jobs:
env:
DOCKER_BUILDKIT: 1
run: |
tox -e docker -- --tag=quay.io/ansible/awx-ee:latest
tox -e docker -- --tag=saltydk/awx-ee:dev
- name: Push images
run: |
echo "${{ secrets.QUAY_TOKEN }}" | docker login quay.io -u ${{ secrets.QUAY_USERNAME }} --password-stdin
docker push quay.io/ansible/awx-ee:latest
echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
docker push quay.io/ansible/awx-ee:dev
51 changes: 0 additions & 51 deletions .github/workflows/ci.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/release.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/triage_new.yml

This file was deleted.

3 changes: 3 additions & 0 deletions execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ dependencies:
- name: theforeman.foreman
- name: google.cloud
- name: openstack.cloud
- name: community.aws
- name: community.docker
- name: community.general
- name: community.vmware
- name: ovirt.ovirt
- name: kubernetes.core
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allowlist_externals =
/bin/bash
podman
commands =
/bin/bash -c "podman rmi quay.io/ansible/awx-ee:latest || true"
/bin/bash -c "podman rmi saltydk/awx-ee:dev || true"
ansible-builder build -v3 -t quay.io/ansible/awx-ee {posargs}

[testenv:docker]
Expand All @@ -22,5 +22,5 @@ allowlist_externals =
/bin/bash
docker
commands =
/bin/bash -c "docker rmi quay.io/ansible/awx-ee:latest || true"
ansible-builder build -v3 -t quay.io/ansible/awx-ee {posargs} --container-runtime=docker
/bin/bash -c "docker rmi saltydk/awx-ee:dev || true"
ansible-builder build -v3 -t saltydk/awx-ee {posargs} --container-runtime=docker

0 comments on commit 2f777e1

Please sign in to comment.