ci: Test #31
Workflow file for this run
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
name: Build windows | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: fedora:40 | |
steps: | |
- run: git config --global core.autocrlf input | |
shell: pwsh | |
- uses: actions/checkout@v4 | |
- name: Install dnf plugins core | |
run: dnf install dnf-plugins-core | |
- name: Enable testdisk mingw-testdisk repo | |
run: dnf copr enable grenier/mingw-testdisk | |
- name: Install NTFSPROGS | |
run: >- | |
dnf install | |
git | |
libtool | |
autoconf | |
automake | |
make | |
mingw64-binutils | |
mingw64-filesystem | |
mingw64-gcc | |
mingw64-gcc-c++ | |
mingw64-gettext | |
mingw64-libewf | |
mingw64-libjpeg-turbo | |
mingw64-ntfsprogs | |
mingw64-openssl | |
mingw64-pdcurses | |
mingw64-qt5-qtbase-devel | |
mingw64-qt5-qttools-tools | |
mingw64-win-iconv | |
mingw64-zlib | |
- name: Configure | |
run: | | |
autoreconf -vif -I config -W all | |
mingw64-configure --enable-missing-uuid-ok | |
- name: Build | |
run: | | |
mingw64-make |