Skip to content

build(macos): Copy help and icons into package #281

build(macos): Copy help and icons into package

build(macos): Copy help and icons into package #281

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
name: "CodeQL"
on:
push:
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
schedule:
- cron: "0 3 * * 5"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["java", "cpp"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "21"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Setup
run: |
sudo add-apt-repository -y ppa:lightzone-team/lightzone
sudo apt update -y
sudo apt install -y \
javahelp2 \
libejml-java \
libglib2.0-dev \
libjetbrains-annotations-java \
libjiconfont-font-awesome-java \
libjiconfont-google-material-design-icons-java \
libjiconfont-swing-java \
liblcms2-dev \
liblensfun-dev \
liblombok-java \
libraw-dev \
libtiff-dev \
tidy
- name: Build with Gradle
run: gradle build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2