Skip to content

Commit

Permalink
Bump gh-action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
asb2m10 committed Oct 14, 2023
1 parent 9a36458 commit b6cf2e9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/project-pipeline.yml
Expand Up @@ -21,37 +21,37 @@ jobs:
sudo apt-get update && sudo apt install libasound2-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev ccache xvfb libjack-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Show
run: ls -lR ${{github.workspace}}/build

- name: Upload
uses: actions/upload-artifact@v3
with:
name: linux-bin
path: |
path: |
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*
build-macos:
runs-on: macos-10.15
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

Expand All @@ -63,7 +63,7 @@ jobs:

- name: Upload
uses: actions/upload-artifact@v3
with:
with:
name: macos-bin
path: |
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
Expand All @@ -75,10 +75,10 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

Expand All @@ -95,7 +95,7 @@ jobs:
with:
name: windows-bin
path: |
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*

0 comments on commit b6cf2e9

Please sign in to comment.