Skip to content

Commit

Permalink
Add MINGW64 Cross-compilation Action
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Mar 18, 2024
1 parent 344ba97 commit 90fe14f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lin-gcc_min.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: lin gcc_min

on: [push, pull_request]

jobs:
gcc_min:
name: lin gcc_min
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y mingw-w64 mingw-w64-tools wine64
- name: Get Source
uses: actions/checkout@v4.1.1
- name: Test HDF5
run: |
mkdir build
cd build
cmake --toolchain ../config/toolchain/mingw64.cmake \
-DBUILDNAME:STRING=gcc_min \
-DCTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
-DSITE:STRING=lin \
..
ctest -D Experimental

0 comments on commit 90fe14f

Please sign in to comment.