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.
39 lines
758 B
39 lines
758 B
4 years ago
|
name: Fedora
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
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 @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 }}
|
||
|
|
||
|
|