Skip to content

CI/debian-compat: fixes (3) #3

CI/debian-compat: fixes (3)

CI/debian-compat: fixes (3) #3

Workflow file for this run

name: Test Debian-compatible platforms
on:
workflow_dispatch:
inputs:
platforms:
description: 'Platforms'
default: '["debian:10", "debian:11", "debian:12","debian:sid",
"ubuntu:14.04", "ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:23.04"]' # "elementary/docker:stable"
jobs:
redhat-compat-matrix:

Check failure on line 12 in .github/workflows/debian-compat.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/debian-compat.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l -eo pipefail {0}
strategy:
matrix:
os: ${{ fromJson(inputs.platforms) }}
fail-fast: false
container:
image: ${{ matrix.os }}
options: --cpus 2
# steps:
# - name: Prerequisites
# run: |
# yum install -y tar gzip
- uses: actions/checkout@v3
with:
submodules: false
# - run: |
# git config --global --add safe.directory '*'
# # git submodule update --init --recursive
- name: Python
run: |
./bin/getpy3
- name: Installations
run: |
./bin/getgcc --modern
- name: Summary
run: |
echo "/etc/os-release:"; cat /etc/os-release
echo "uname -a: $(uname -a)"
echo "python: $(python3 --version)"
echo "pip list:"; python3 -m pip list -v
echo "System gcc: $(/usr/bin/gcc --version | head -1)"
echo "gcc: $(gcc --version | head -1)"
echo "glibc: $(./bin/glibcver)"
echo "libstdc++: $(./bin/libstdc++ver)"