Skip to content

Test Debian-compatible platforms #4

Test Debian-compatible platforms

Test Debian-compatible platforms #4

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:
debian-compat-matrix:
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: |
# apt-get 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)"