Skip to content

Commit

Permalink
GHA: Clean up mingw build
Browse files Browse the repository at this point in the history
- Remove useless caching. Currently the build doesn't
  need any dependencies.

- Remove useless sub-directory

Signed-off-by: Frank Lichtenheld <[email protected]>
  • Loading branch information
flichtenheld authored and lstipakov committed Jan 16, 2025
1 parent 716b391 commit 427030a
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 427030a

Please sign in to comment.