package An official xmake package repository https://xrepo.xmake.io/
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.

45 lines
1.2 KiB

4 years ago
name: Fedora
on:
pull_request:
4 years ago
branches:
- dev
4 years ago
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
kind: [static, shared]
runs-on: ${{ matrix.os }}
container: fedora:latest
3 years ago
concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Fedora-${{ matrix.kind }}
cancel-in-progress: true
4 years ago
steps:
- name: Installation
run: |
uname -a
dnf -y install gfortran p7zip which
dnf -y install mesa-libGL-devel mesa-libGLU-devel
4 years ago
dnf -y install @development-tools @rpm-development-tools
dnf -y install copr-cli make gcc-c++ libatomic libcxx-devel
4 years ago
dnf -y upgrade git
dnf -y install perl
12 months ago
dnf -y install glibc-static libstdc++-static
3 years ago
git config --global --add safe.directory /__w/xmake-repo/xmake-repo
4 years ago
- uses: actions/checkout@v1
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
actions-cache-folder: '.xmake-cache'
12 months ago
actions-cache-key: 'fedora'
4 years ago
- name: Tests
env:
XMAKE_ROOT: y
run: |
xmake l ./scripts/test.lua -D -k ${{ matrix.kind }} -j4