diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2022-07-27 15:02:01 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2022-07-27 15:02:01 +0200 |
commit | 6ba48515b5d0bf9568bb1312e23ea596acd7a501 (patch) | |
tree | bcaf1a4c23757b6e8b551d6eb89cf9a9c6841d1b /.github/workflows | |
parent | 29a5947bf83c8011e62cc859a0a832ee8ab690ee (diff) | |
download | yosys-6ba48515b5d0bf9568bb1312e23ea596acd7a501.tar.gz yosys-6ba48515b5d0bf9568bb1312e23ea596acd7a501.tar.bz2 yosys-6ba48515b5d0bf9568bb1312e23ea596acd7a501.zip |
macos 10.15 deprecated by gh actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test-macos.yml | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index b14ce8633..22cf5e658 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -71,57 +71,3 @@ jobs: shell: bash run: | make -j${{ env.procs }} test CXXSTD=${{ matrix.cpp_std }} CC=cc CXX=cc LD=cc - - - test-macos-homebrew: - runs-on: ${{ matrix.os.id }} - strategy: - matrix: - os: - - { id: macos-10.15, name: Catalina } - cpp_std: - - 'c++17' - compiler: - - gcc - fail-fast: false - steps: - - name: Install Dependencies - run: | - brew install bison flex gawk libffi pkg-config bash - - - name: Runtime environment - shell: bash - env: - WORKSPACE: ${{ github.workspace }} - run: | - echo "GITHUB_WORKSPACE=`pwd`" >> $GITHUB_ENV - echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH - echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH - echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH - echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV - - - name: Setup compiler - shell: bash - run: | - brew install ${{ matrix.compiler }} - CC=${COMPILER/@/-} - CXX=${CC/#gcc/g++} - echo "CC=$CC" >> $GITHUB_ENV - echo "CXX=$CXX" >> $GITHUB_ENV - env: - COMPILER: ${{ matrix.compiler }} - - - name: Tool versions - shell: bash - run: | - $CC --version - $CXX --version - - - name: Checkout Yosys - uses: actions/checkout@v2 - - - name: Build yosys - shell: bash - run: | - make config-gcc - make -j${{ env.procs }} CXXSTD=${{ matrix.cpp_std }} CC=$CC CXX=$CC LD=$CC |