Skip to content

Commit

Permalink
💚 fix: add os in build and release
Browse files Browse the repository at this point in the history
  • Loading branch information
camargo2019 committed Sep 14, 2024
1 parent d916e55 commit 9309964
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,31 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04, windows-latest, windows-2022, windows-2019]
include:
- os: ubuntu-latest
install: sudo apt-get update && sudo apt-get install -y libboost-all-dev clang
- os: ubuntu-24.04
install: sudo apt-get update && sudo apt-get install -y libboost-all-dev clang
- os: ubuntu-22.04
install: sudo apt-get update && sudo apt-get install -y libboost-all-dev clang
- os: ubuntu-20.04
install: sudo apt-get update && sudo apt-get install -y libboost-all-dev clang
- os: windows-latest
install: |
choco install llvm
curl -L -o boost.zip https://storage.cmr.dev.br/boost.zip
unzip boost.zip -d boost
- os: windows-2022
install: |
choco install llvm
curl -L -o boost.zip https://storage.cmr.dev.br/boost.zip
unzip boost.zip -d boost
- os: windows-2019
install: |
choco install llvm
curl -L -o boost.zip https://storage.cmr.dev.br/boost.zip
unzip boost.zip -d boost
steps:
- name: Checkout code
Expand Down

0 comments on commit 9309964

Please sign in to comment.