Skip to content

Commit

Permalink
ci: Initial workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxuser committed Sep 4, 2024
1 parent ad66e4e commit b7aa808
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build windows

on: [push]

jobs:
build:
runs-on: ubuntu-latest
container: fedora:40
steps:
- uses: actions/checkout@v4
- name: Install dnf plugins core
run: dnf install -y dnf-plugins-core
- name: Enable testdisk mingw-testdisk repo
run: dnf copr enable -y grenier/mingw-testdisk
- name: Install dependencies
run: |
dnf install -y \
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

0 comments on commit b7aa808

Please sign in to comment.