mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-06 21:30:12 +08:00
35 lines
955 B
YAML
35 lines
955 B
YAML
name: C/C++ CI Linux
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
paths: [ '**.c', '**.h', 'Makefile.**', '.github/configs', '.github/workflows/c-cpp.yml' ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
paths: [ '**.c', '**.h', 'Makefile.**', '.github/configs', '.github/workflows/c-cpp.yml' ]
|
|
|
|
jobs:
|
|
ci:
|
|
name: "${{ matrix.target }}"
|
|
strategy:
|
|
matrix:
|
|
target:
|
|
- ubuntu-latest
|
|
- ubuntu-24.04-arm
|
|
runs-on: ${{ matrix.target }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# - name: configure
|
|
# run: ./configure
|
|
- name: Linux libraries
|
|
if: ${{ startsWith(matrix.target, 'ubuntu') }}
|
|
run: sudo apt install libssl-dev libpam-dev libpcre2-dev
|
|
- name: make
|
|
run: make -f Makefile.Linux
|
|
- name: mkdir
|
|
run: mkdir ~/3proxy
|
|
- name: make install
|
|
run: make -f Makefile.Linux DESTDIR=~/3proxy install
|
|
- name: make clean Linux
|
|
run: make -f Makefile.Linux clean
|