GHA: remove ._ files from macOS zip #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**.html' | |
- '**.schelp' | |
- 'README' | |
- 'LICENSE' | |
- '_data/**' | |
- '.bundle/**' | |
- 'assets/**' | |
- 'index.*' | |
- '_config.yml' | |
- 'Gemfile*' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '**.html' | |
- '**.schelp' | |
- 'README' | |
- 'LICENSE' | |
- '_data/**' | |
- '.bundle/**' | |
- 'assets/**' | |
- 'index.*' | |
- '_config.yml' | |
- 'Gemfile*' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Linux-x64 | |
os: ubuntu-20.04 | |
cmake-flags: '-G "Unix Makefiles" -D RULE_LAUNCH_COMPILE=ccache' | |
cache-path: '~/.ccache' | |
- name: macOS | |
os: macos-11 | |
cmake-flags: '-G Xcode -D CMAKE_OSX_ARCHITECTURES="x86_64;arm64"' | |
xcode-version: '12.4' | |
deployment-target: '10.10' | |
- name: Windows-32bit | |
os: windows-2019 | |
cmake-flags: '-G "Visual Studio 16 2019" -A Win32' | |
vcvars-script: 'C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars32.bat' | |
fftw-url: 'ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5-dll32.zip' | |
fftw-arch: 'X86' | |
- name: Windows-64bit | |
os: windows-2019 | |
cmake-flags: '-G "Visual Studio 16 2019" -A x64' | |
vcvars-script: 'C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat' | |
fftw-url: 'ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5-dll64.zip' | |
fftw-arch: 'X64' | |
env: | |
SC_SRC_PATH: ${{ github.workspace }}/supercollider | |
BUILD_PATH: ${{ github.workspace }}/build | |
INSTALL_PATH: ${{ github.workspace }}/build/install | |
FFTW_INSTALL_DIR: "C:/Program Files/fftw" | |
DEVELOPER_DIR: '/Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer' | |
MACOSX_DEPLOYMENT_TARGET: '${{ matrix.deployment-target }}' | |
name: ${{ matrix.name }} | |
steps: | |
- name: set filename # use tag or sha for version | |
id: set-filename | |
shell: bash | |
run: | | |
if [[ "$GITHUB_REF" == refs/tags/* ]]; then | |
FULL_TAG=${GITHUB_REF#refs/tags/} | |
VERSION=${FULL_TAG##Version-} | |
else | |
VERSION=$GITHUB_SHA | |
fi | |
echo "::set-output name=filename::sc3-plugins-$VERSION-${{ matrix.name }}" | |
- name: checkout sc3-plugins | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: checkout supercollider | |
uses: actions/checkout@v2 | |
with: | |
repository: supercollider/supercollider | |
path: ${{ env.SC_SRC_PATH }} | |
ref: main | |
- name: cache ccache | |
uses: actions/cache@v2 | |
if: matrix.cache-path | |
with: | |
path: ${{ matrix.cache-path }} | |
key: ${{ matrix.name }}-${{ github.run_id }} | |
restore-keys: ${{ matrix.name }}- | |
- name: install Linux dependencies | |
if: runner.os == 'Linux' | |
run: sudo apt-get install --yes libfftw3-dev | |
- name: install FFTW | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
mkdir -p "$FFTW_INSTALL_DIR" && cd "$FFTW_INSTALL_DIR" | |
curl -L ${{ matrix.fftw-url }} -o fftw.zip | |
7z x fftw.zip -y | |
- name: create FFTW MSVC library | |
if: matrix.vcvars-script | |
shell: cmd | |
working-directory: ${{ env.FFTW_INSTALL_DIR }} | |
run: | | |
call "${{ matrix.vcvars-script }}" | |
lib.exe /machine:${{ matrix.fftw-arch }} /def:libfftw3f-3.def | |
- name: configure | |
shell: bash | |
run: | | |
mkdir $BUILD_PATH && cd $BUILD_PATH | |
cmake ${{ matrix.cmake-flags }} -D SC_PATH=$SC_SRC_PATH -D CMAKE_BUILD_TYPE=Release -D SUPERNOVA=ON -D CMAKE_INSTALL_PREFIX=$INSTALL_PATH -D IN_PLACE_BUILD=OFF .. | |
- name: build | |
shell: bash | |
working-directory: ${{ env.BUILD_PATH }} | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 4 | |
run: | | |
cmake --build . --config Release --target install | |
- name: compress plugins | |
shell: bash | |
working-directory: ${{ env.INSTALL_PATH }} | |
run: | | |
if [[ "${{ runner.os }}" == "Windows" ]]; then | |
7z a ${{ steps.set-filename.outputs.filename }}.zip -tzip . | |
else | |
zip -r ${{ steps.set-filename.outputs.filename }}.zip . | |
fi | |
if [[ "${{ runner.os }}" == "macOS" ]]; then | |
zip -d ${{ steps.set-filename.outputs.filename }}.zip \*/._\* | |
fi | |
- name: upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ steps.set-filename.outputs.filename }} | |
path: ${{ env.INSTALL_PATH }}/${{ steps.set-filename.outputs.filename }}.zip | |
- name: deploy release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: true | |
file: ${{ env.INSTALL_PATH }}/${{ steps.set-filename.outputs.filename }}.zip | |
tag: ${{ github.ref }} |