-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI for MSYS2, and package build as artifact
- Loading branch information
Showing
3 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: GitHub Actions | ||
name: Generic cross-platform tests | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Build on MSYS2 | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Set git to use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- uses: actions/checkout@v4 | ||
- uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: mingw64 | ||
install: autotools mingw-w64-x86_64-gcc mingw-w64-x86_64-libogg | ||
|
||
- name: Install pandoc | ||
run: | | ||
choco install pandoc | ||
- name: Build, run tests and prepare package | ||
shell: msys2 {0} | ||
run: | | ||
PATH=$PATH:/c/ProgramData/bin/ | ||
./autogen.sh | ||
./configure --enable-static --disable-shared # This is because the libtool helper script doesn't handle UTF-8 filenames correctly | ||
make | ||
make check | ||
mkdir flac | ||
cp src/flac/flac.exe flac/flac.exe | ||
cp src/metaflac/metaflac.exe flac/metaflac.exe | ||
cp COPYING.* flac | ||
cp AUTHORS flac | ||
cp README* flac | ||
cp man/*.html flac | ||
- name: Upload logs on failure | ||
uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: flac-${{ github.sha }}-${{ github.run_id }}-logs | ||
path: | | ||
./**/*.log | ||
./**/out*.meta | ||
- name: Package build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: flac-win64-static-${{ github.sha}} | ||
path: flac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: GitHub Actions for specific options | ||
name: Building with specific options | ||
|
||
on: | ||
push: | ||
|