3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 09:35:32 +00:00

Try again

This commit is contained in:
Akash Levy 2025-01-15 17:17:41 -08:00
parent ec7b4b74b4
commit 78a510ca54

View file

@ -30,16 +30,6 @@ jobs:
# only run on push *or* pull_request, not both
concurrent_skipping: 'same_content_newer'
install_dept:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
shell: bash
run: |
sudo apt-get -y update
sudo apt-get -y install libdwarf-dev libelf-dev elfutils libdw-dev \
libnsl-dev
build-yosys:
name: Reusable build
runs-on: ${{ matrix.os }}
@ -61,6 +51,17 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup-build-env
- name: Setup Mac
if: matrix.os == 'macos-latest'
run: brew install
- name: Setup Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get -y update
sudo apt-get -y install libdwarf-dev libelf-dev elfutils libdw-dev \
libnsl-dev
- name: Build Verific
run: cd verific/tclmain && make -j$procs