Skip to content

Commit

Permalink
add github actions runs on latest windows (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
KimBioInfoStudio authored Nov 30, 2023
1 parent 234644d commit cdc8178
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
if: github.repository_owner == 'oneapi-src'
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: hendrikmuhs/ccache-action@v1
- name: Build Loader
- name: Build Loader on Latest Ubuntu
run: |
mkdir build
cd build
Expand All @@ -22,3 +22,15 @@ jobs:
-D CMAKE_BUILD_TYPE=Release \
..
make -j$(nproc)
build-windows:
if: github.repository_owner == 'oneapi-src'
runs-on: [windows-latest]
steps:
- uses: actions/checkout@v3
- name: Build Loader on Latest Windows
shell: pwsh
run: |
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release

0 comments on commit cdc8178

Please sign in to comment.