Skip to content

Commit

Permalink
ci(cygwin,f): test
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Oct 4, 2024
1 parent 6cd9e97 commit 0c9dab8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/cyg-ninja-f.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: cyg ninja f

on:
push:
branches:
- develop

jobs:
test:
name: cyg ninja
runs-on: windows-latest
steps:
- name: git
run: |
git config --global core.autocrlf input
- uses: actions/checkout@v4
- name: set
uses: cygwin/cygwin-install-action@master
with:
packages: cmake gcc-fortran make ninja perl zlib-devel
- name: test
run: |
export PATH=/usr/bin:$PATH
mkdir build
cd build
cmake -G Ninja \
-D SITE:STRING=cwin \
-DBUILDNAME:STRING="ninja/f" \
-D BUILD_SHARED_LIBS:BOOL=OFF \
-DHDF5_BUILD_FORTRAN:BOOL=ON \
-D CTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
..
ctest -D Experimental
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'
2 changes: 1 addition & 1 deletion .github/workflows/cyg-ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: cyg ninja
on:
push:
branches:
- develop
- develop-

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/s390x-lin-f.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: s390x lin f
on:
push:
branches:
- develop-
- develop

jobs:
s390x_job:
Expand All @@ -12,7 +12,7 @@ jobs:

steps:
- name: Get Sources
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4

- name: Run
uses: uraimo/run-on-arch-action@v2
Expand Down

0 comments on commit 0c9dab8

Please sign in to comment.