You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: Fedora
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
kind: [static, shared]
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
container: fedora:latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Installation
|
|
|
|
run: |
|
|
|
|
uname -a
|
|
|
|
dnf -y install gfortran
|
|
|
|
dnf -y install mesa-libGL-devel mesa-libGLU-devel
|
|
|
|
dnf -y install @development-tools @rpm-development-tools
|
|
|
|
dnf -y install copr-cli make gcc-c++
|
|
|
|
dnf -y upgrade git
|
|
|
|
dnf -y install perl
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: xmake-io/github-action-setup-xmake@v1
|
|
|
|
with:
|
|
|
|
xmake-version: branch@dev
|
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
env:
|
|
|
|
XMAKE_ROOT: y
|
|
|
|
run: |
|
|
|
|
xmake l ./scripts/test.lua -D -k ${{ matrix.kind }} -j1
|
|
|
|
|
|
|
|
|