Skip to content

Commit

Permalink
latest CIs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrothstein committed May 9, 2023
1 parent 7bdf024 commit dfff005
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
32 changes: 19 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,31 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: install python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: 'python -m pip install --upgrade pip
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt;
fi'
- name: 'dcb #ftw'
run: dcb --upstreamregistry ghcr.io --upstreamgroup andrewrothstein --upstreamapp
docker-ansible --targetregistry ghcr.io --targetuser ${{ github.actor }} --targetpwd
${{ github.token }} --snippet from.j2 ansible-test-role.j2 --pullall --writeall
--buildall --pushall --alltags ${{ matrix.os }}
- name: install task
uses: arduino/setup-task@v1
with:
repo-token: ${{ github.token }}
- name: task ver
run: task --version
- name: download task mono
uses: actions/checkout@v2
with:
path: taskmono
ref: develop
repository: andrewrothstein/tasks
- name: 'task #ftw'
run: task -t taskmono/ansible-test-role.yml "targetuser=${{ github.actor }}"
"targetpwd=${{ github.token }}" "alltags=${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
- alpine_3.15
- alpine_3.16
- alpine_3.17
- alpine_edge
- archlinux_latest
- debian_bullseye
Expand All @@ -35,7 +41,7 @@ jobs:
- ubuntu_focal
- ubuntu_jammy
python-version:
- '3.10'
- '3.11'
name: dcb
'on':
- push
2 changes: 1 addition & 1 deletion dcb-os.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- alpine_3.15
- alpine_3.16
- alpine_3.17
- alpine_edge
- archlinux_latest
- debian_bullseye
Expand Down
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

0 comments on commit dfff005

Please sign in to comment.