Skip to content

Commit

Permalink
Adjusted setup steps for compatibility with the Docker environment us…
Browse files Browse the repository at this point in the history
…ed by `act`.
  • Loading branch information
slavaGanzin committed Aug 1, 2024
1 parent 61c21d8 commit b98d5dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,18 @@ jobs:
run: |
choco install make
choco install mingw
shell: cmd
shell: powershell

- name: Set up build tools on Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y gcc
apt-get update
apt-get install -y gcc
- name: Set up build tools on macOS
if: matrix.os == 'macos-latest'
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install gcc
- name: Build on Linux and macOS
Expand Down

0 comments on commit b98d5dc

Please sign in to comment.