Skip to content

Commit

Permalink
Merged revision(s) 22768, 22771 from trunk/OpenMPT:
Browse files Browse the repository at this point in the history
[New] build: CI: GitHub: Add Cygwin Makefile builder.
........
[Fix] CI: Github: Cygwin: Cancel old jobs.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.31@22777 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Jan 4, 2025
1 parent c7cef13 commit 9415263
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/Cygwin-Makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Cygwin Makefile

on:
push:
branches: [ OpenMPT-1.31 ]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: cygwin/cygwin-install-action@master
with:
packages: subversion make gcc-core gcc-g++ autoconf autoconf-archive automake zlib-devel libmpg123-devel libogg-devel libvorbis-devel libsndfile-devel libflac-devel libSDL2-devel libportaudio-devel libportaudiocpp-devel libpulse-devel help2man doygen graphviz curl p7zip zip unzip perl-XML-XPath
- name: setup parallel make
run: bash -c 'echo MAKEFLAGS=-j${NUMBER_OF_PROCESSORS} >> $GITHUB_ENV'
- name: make
run: bash -c 'make'
- name: make check
run: bash -c 'make check'

0 comments on commit 9415263

Please sign in to comment.