GHA: Clean up mingw build

- Remove useless caching. Currently the build doesn't
  need any dependencies.

- Remove useless sub-directory

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
pull/693/merge
Frank Lichtenheld 2025-01-15 17:30:35 +01:00 committed by Lev Stipakov
parent 716b391b2e
commit 427030aec0
1 changed files with 1 additions and 13 deletions

View File

@ -94,24 +94,12 @@ jobs:
run: sudo apt update && sudo apt install -y mingw-w64 libtool automake autoconf
- name: Checkout
uses: actions/checkout@v3
with:
path: openvpn-gui
- name: autoconf
run: autoreconf -fvi
working-directory: openvpn-gui
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '~/mingw/'
key: mingw-${{ matrix.target }}
- name: configure
run: PKG_CONFIG_PATH=${HOME}/mingw/opt/${LIB}/pkgconfig ./configure --host=${{ matrix.chost }}
working-directory: openvpn-gui
run: ./configure --host=${{ matrix.chost }}
- name: make
run: make
working-directory: openvpn-gui