Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Windows build check workaround and update actions #89

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

# We need to build/link Poco ourselves as static libraries, because Ubuntu Jammy ships with a broken Poco 1.11.0
- name: Checkout Poco Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: pocoproject/poco
path: poco
Expand All @@ -34,7 +34,7 @@ jobs:
cmake --install "${{ github.workspace }}/cmake-build-poco"

- name: Checkout libprojectM Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: projectM-visualizer/projectm
path: projectm
Expand All @@ -48,7 +48,7 @@ jobs:
cmake --install "${{ github.workspace }}/cmake-build-libprojectm"

- name: Checkout frontend-sdl2 Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: frontend-sdl2
submodules: recursive
Expand All @@ -65,12 +65,6 @@ jobs:
runs-on: windows-latest

steps:
- name: Setup MSVC dev command prompt
uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
toolset: 14.38.33130

- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v6
with:
Expand All @@ -79,7 +73,7 @@ jobs:
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');

- name: Checkout libprojectM Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: projectM-visualizer/projectm
path: projectm
Expand All @@ -95,7 +89,7 @@ jobs:
cmake --install "${{ github.workspace }}/cmake-build-libprojectm" --config Release

- name: Checkout projectMSDL Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: frontend-sdl2
submodules: recursive
Expand All @@ -118,7 +112,7 @@ jobs:
run: brew install sdl2 ninja googletest poco

- name: Checkout libprojectM Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: projectM-visualizer/projectm
path: projectm
Expand All @@ -132,7 +126,7 @@ jobs:
cmake --install "${{ github.workspace }}/cmake-build-libprojectm"

- name: Checkout projectMSDL Sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: frontend-sdl2
submodules: recursive
Expand Down
Loading