2022-04-04 23:15:59 +03:00
|
|
|
name: C
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Checkout libixp
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: 0intro/libixp
|
|
|
|
path: libixp
|
|
|
|
|
2023-06-25 21:57:45 +03:00
|
|
|
- name: Dependencies
|
|
|
|
run: sudo apt-get -y install libxinerama-dev libxrandr-dev txt2tags
|
|
|
|
|
2022-04-04 23:15:59 +03:00
|
|
|
- name: Build libixp
|
|
|
|
working-directory: ./libixp
|
|
|
|
run: sudo make install
|
|
|
|
|
|
|
|
- name: make clean
|
|
|
|
run: make clean
|
|
|
|
|
|
|
|
- name: make
|
|
|
|
run: make
|