From 89172b0c049c89a29f271bd6462942e3ec94612a Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sun, 17 Dec 2023 23:10:18 +0100 Subject: [PATCH] disable tests --- .github/workflows/bsd.yml | 122 ++++++++++++++++++------------------ .github/workflows/build.yml | 12 ++-- 2 files changed, 67 insertions(+), 67 deletions(-) diff --git a/.github/workflows/bsd.yml b/.github/workflows/bsd.yml index 7493a38b66..36186085ed 100644 --- a/.github/workflows/bsd.yml +++ b/.github/workflows/bsd.yml @@ -4,64 +4,64 @@ # https://github.com/vmactions/openbsd-vm # https://github.com/vmactions/netbsd-vm -on: [push, pull_request] -name: bsd-tests -concurrency: - group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || '' }} - cancel-in-progress: true -jobs: - freebsd: - runs-on: macos-12 - steps: - - uses: actions/checkout@v4 - - name: Run tests - uses: vmactions/freebsd-vm@v1 - with: - usesh: true - prepare: | - pkg install -y gcc python3 - run: | - set -e -x - make install-pip - python3 -m pip install --user setuptools - make install - make test - make test-memleaks - openbsd: - runs-on: macos-12 - steps: - - uses: actions/checkout@v4 - - name: Run tests - uses: vmactions/openbsd-vm@v1 - with: - usesh: true - prepare: | - set -e - pkg_add gcc python3 - run: | - set -e - make install-pip - python3 -m pip install --user setuptools - make install - make test - make test-memleaks - netbsd: - runs-on: macos-12 - steps: - - uses: actions/checkout@v4 - - name: Run tests - uses: vmactions/netbsd-vm@v1 - with: - usesh: true - prepare: | - set -e - pkg_add -v pkgin - pkgin update - pkgin -y install python311-* py311-setuptools-* gcc12-* - run: | - set -e - make install-pip PYTHON=python3.11 - python3.11 -m pip install --user setuptools - make install PYTHON=python3.11 - make test PYTHON=python3.11 - make test-memleaks PYTHON=python3.11 +# on: [push, pull_request] +# name: bsd-tests +# concurrency: +# group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || '' }} +# cancel-in-progress: true +# jobs: +# freebsd: +# runs-on: macos-12 +# steps: +# - uses: actions/checkout@v4 +# - name: Run tests +# uses: vmactions/freebsd-vm@v1 +# with: +# usesh: true +# prepare: | +# pkg install -y gcc python3 +# run: | +# set -e -x +# make install-pip +# python3 -m pip install --user setuptools +# make install +# make test +# make test-memleaks +# openbsd: +# runs-on: macos-12 +# steps: +# - uses: actions/checkout@v4 +# - name: Run tests +# uses: vmactions/openbsd-vm@v1 +# with: +# usesh: true +# prepare: | +# set -e +# pkg_add gcc python3 +# run: | +# set -e +# make install-pip +# python3 -m pip install --user setuptools +# make install +# make test +# make test-memleaks +# netbsd: +# runs-on: macos-12 +# steps: +# - uses: actions/checkout@v4 +# - name: Run tests +# uses: vmactions/netbsd-vm@v1 +# with: +# usesh: true +# prepare: | +# set -e +# pkg_add -v pkgin +# pkgin update +# pkgin -y install python311-* py311-setuptools-* gcc12-* +# run: | +# set -e +# make install-pip PYTHON=python3.11 +# python3.11 -m pip install --user setuptools +# make install PYTHON=python3.11 +# make test PYTHON=python3.11 +# make test-memleaks PYTHON=python3.11 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df248a6307..8e8099eefa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,14 +25,14 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-latest - archs: "x86_64 i686" - - os: macos-12 - archs: "x86_64 arm64" + # - os: ubuntu-latest + # archs: "x86_64 i686" + # - os: macos-12 + # archs: "x86_64 arm64" - os: windows-2019 archs: "AMD64" - - os: windows-2019 - archs: "x86" + # - os: windows-2019 + # archs: "x86" steps: - uses: actions/checkout@v4