mirror of https://github.com/weisJ/darklaf.git
darculadarcula-themefeelguihacktoberfestintellijintellij-themelaflooklookandfeelnativesolarizedsolarized-dark-themesolarized-light-themesvgswingthemethemes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.6 KiB
85 lines
2.6 KiB
# |
|
# MIT License |
|
# |
|
# Copyright (c) 2020 Jannis Weis |
|
# |
|
# Permission is hereby granted, free of charge, to any person obtaining a copy |
|
# of this software and associated documentation files (the "Software"), to deal |
|
# in the Software without restriction, including without limitation the rights |
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
# copies of the Software, and to permit persons to whom the Software is |
|
# furnished to do so, subject to the following conditions: |
|
# |
|
# The above copyright notice and this permission notice shall be included in all |
|
# copies or substantial portions of the Software. |
|
# |
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
# SOFTWARE. |
|
# |
|
# |
|
name: Build Native Libraries |
|
|
|
on: |
|
push: |
|
paths: |
|
- '**.cpp' |
|
- '**.mm' |
|
pull_request: |
|
paths: |
|
- '**.cpp' |
|
- '**.mm' |
|
release: |
|
types: |
|
- published |
|
schedule: |
|
- cron: '0 0 1 * *' |
|
jobs: |
|
windows: |
|
name: Windows (Java 11) |
|
runs-on: windows-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
with: |
|
fetch-depth: 10 |
|
- name: Set up JDK 11 |
|
uses: actions/setup-java@v1 |
|
with: |
|
java-version: 11 |
|
- name: Build |
|
run: ./gradlew :darklaf-windows:build -PskipAutostyle -x test |
|
- name: Upload x86 artifact |
|
uses: actions/upload-artifact@v1 |
|
with: |
|
name: windows-x86 |
|
path: windows/build/libs/main/x86/darklaf-windows.dll |
|
- name: Upload x86-64 artifact |
|
uses: actions/upload-artifact@v1 |
|
with: |
|
name: windows-x86-64 |
|
path: windows/build/libs/main/x86-64/darklaf-windows.dll |
|
|
|
macOS: |
|
name: macOS (Java 11) |
|
runs-on: macos-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
with: |
|
fetch-depth: 10 |
|
- name: Set up JDK 11 |
|
uses: actions/setup-java@v1 |
|
with: |
|
java-version: 11 |
|
- name: Build |
|
run: ./gradlew :darklaf-macos:build -PskipAutostyle -x test |
|
- name: Upload artifact |
|
uses: actions/upload-artifact@v1 |
|
with: |
|
name: macos-x86-64 |
|
path: macos/build/libs/main/libdarklaf-macos.dylib |
|
- name: Print library information |
|
run: otool -l macos/build/libs/main/libdarklaf-macos.dylib
|
|
|