Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
windows
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Jan 16, 2024
1 parent f953d7e commit 6185125
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: jar analyzer build

on:
workflow_dispatch:

jobs:

build:
runs-on: windows-2019
steps:
- name: checkout the source
uses: actions/checkout@v4
with:
path: jar-analyzer

- name: set up python
uses: actions/setup-python@v5
with:
python-version: '3.8'

- name: install cmake
run: |
curl -L https://cmake.org/files/v3.28/cmake-3.28.0-rc4-windows-x86_64.zip -o cmake.zip
Expand-Archive -LiteralPath cmake.zip -DestinationPath . -Force
- name: install ninja
run: |
curl -L https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip -o ninja.zip
Expand-Archive -LiteralPath ninja.zip -DestinationPath . -Force
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: |
native/build-windows.zip

0 comments on commit 6185125

Please sign in to comment.