Skip to content

Merge Wine proton_10.0 updates from ValveSoftware/wine (PR #28) #84

Merge Wine proton_10.0 updates from ValveSoftware/wine (PR #28)

Merge Wine proton_10.0 updates from ValveSoftware/wine (PR #28) #84

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
autoconf \
automake \
libtool \
build-essential \
pkg-config \
python3 \
libxml2-dev \
libxml2-utils
- name: Generate configure script
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck