Skip to content

Commit a4424af

Browse files
committed
Fix compilation issues
1 parent f2134da commit a4424af

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/build-macos.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313

14+
- name: "Setup python"
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.x'
18+
1419
- name: "Setup flex, bison"
1520
run: |
1621
brew install flex bison

.github/workflows/build-windows-cygwin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: windows-latest
1111
defaults:
1212
run:
13-
shell: C:\tools\cygwin\bin\bash.exe --login -o igncr {0}
13+
shell: C:\cygwin\bin\bash.exe --login -o igncr {0}
1414
steps:
1515
- name: "Setup git"
1616
shell: cmd
@@ -19,9 +19,9 @@ jobs:
1919
- uses: actions/checkout@v2
2020

2121
- name: "Setup Cygwin"
22-
uses: egor-tensin/setup-cygwin@v3
22+
uses: cygwin/cygwin-install-action@v2
2323
with:
24-
platform: x64
24+
platform: x86_64
2525
packages: automake make cmake gcc-g++ doxygen graphviz libssl-devel libuuid-devel flex bison
2626

2727
- name: "Setup cmake"

0 commit comments

Comments
 (0)