ci: attempt distro testing #689
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: 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' | |
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 | |
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 curl | |
else if which pacman; then | |
# for arch besides manjaro | |
pacman -S --needed --noconfirm bash curl | |
else if which yum; then | |
# for fedora | |
yum install -y bash curl | |
fi | |
- name: 'Dorothy Remote Tests' | |
run: | | |
bash -ic "$(curl -fsSL https://dorothy.bevry.me/commands/dorothy)" -- test |