Skip to content

ci: attempt distro testing #686

ci: attempt distro testing

ci: attempt distro testing #686

Workflow file for this run

name: dorothy
'on':
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
env:
DOROTHY: ${{ github.workspace }}
VERBOSE: yes
CI_COMMIT_MESSAGE: 'ci: adjustments'
CI_COMMIT_NAME: 'Continuous Integration'
CI_COMMIT_EMAIL: '[email protected]'
steps:
- name: 'Checkout'
uses: actions/checkout@v2
- name: 'Cache XDG'
id: cache-xdg
uses: actions/cache@v3
with:
path: ~/.local
key: ${{ runner.os }}
- name: 'Dorothy Development'
shell: bash
run: |
chmod +x "$DOROTHY/commands/"*
source "$DOROTHY/sources/login.sh"
dorothy dev
- name: 'Trunk Format'
if: github.event_name == 'push'
shell: bash
run: |
source "$DOROTHY/sources/login.sh"
dorothy format || :
if git diff --quiet &>/dev/null; then
echo 'Already formatted.'
else
git config --global user.name "${{ env.CI_COMMIT_NAME }}"
git config --global user.email "${{ env.CI_COMMIT_EMAIL }}"
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }}"
git push
fi
- name: 'Trunk Check'
uses: trunk-io/trunk-action@v1
- name: 'Dorothy Test'
shell: 'script -q -e -c "bash {0}"'
run: |
source "$DOROTHY/sources/login.sh"
dorothy test
distros:
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix:
container:
- 'ubuntu:latest' # https://hub.docker.com/_/ubuntu
- 'fedora:latest' # https://hub.docker.com/_/fedora
- 'debian:latest' # https://hub.docker.com/_/debian
- 'alpine:latest' # https://hub.docker.com/_/alpine
- 'manjarolinux/base' # https://hub.docker.com/r/manjarolinux/base
- 'archlinux:latest' # https://hub.docker.com/_/archlinux
- 'opensuse/leap' # https://hub.docker.com/r/opensuse/leap
container:
image: ${{ matrix.container }}
env:
DOROTHY: ${{ github.workspace }}
VERBOSE: 'yes'
steps:
- name: 'Dorothy Remote Tests'
shell: bash
run: |
if which apt-get; then
# for ubuntu
apt-get update
apt-get install -y bash curl
else if which apk; then
# for alpine
apk add bash curl grep
else if which zypper; then
# for opensuse
zypper install -y --no-recommends bash curl
else if which pamac; then
# for manjaro
pamac install --no-confirm bash cur
else if which pacman; then
# for arch besides manjaro
pacman -S --needed --noconfirm bash curl git
else if which yum; then
# for fedora
yum install -y bash curl
fi
bash -ic "$(curl -fsSL https://dorothy.bevry.me/commands/dorothy)" -- test