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

Update CI.yml #784

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
18 changes: 6 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,23 +180,17 @@ jobs:
make test YOSYS_PATH=../yosys/install

macos-gcc:
if: ${{ false }} # EDA-799
# if: ${{ false }} # EDA-799
name: macos-gcc
runs-on: macos-latest

steps:

- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.8

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use ccache
uses: hendrikmuhs/ccache-action@v1
Expand All @@ -210,8 +204,8 @@ jobs:

- name: Configure shell
run: |
echo 'CC=gcc-11' >> $GITHUB_ENV
echo 'CXX=g++-11' >> $GITHUB_ENV
echo 'CC=gcc-12' >> $GITHUB_ENV
echo 'CXX=g++-12' >> $GITHUB_ENV
echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
echo "PKG_CONFIG_PATH=\"/usr/local/opt/openssl@3/lib/pkgconfig\"" >> $GITHUB_ENV
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
Expand All @@ -227,7 +221,7 @@ jobs:
which $CC && $CC --version
which $CXX && $CXX --version
which bison && bison --version
which install && install --version
which install #&& install -v

- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set(VERSION_MINOR 0)



set(VERSION_PATCH 369)
set(VERSION_PATCH 370)



Expand Down
Loading