Skip to content

Commit

Permalink
Disable macOS and Linux in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonah Beckford committed Jul 8, 2024
1 parent 8f89635 commit 5bf1399
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ jobs:
printf 'Major.Minor.Patch = \e[1;34m%s\e[0m\n' "$MAJMINPAT"
printf 'Major.Minor.Patch[-Prerelease] = \e[1;34m%s\e[0m\n' "$MAJMINPATPRE"
- name: View release notes
# | opam-darwin_x86_64-i-$MAJMINPAT.tar.gz | No | Unsigned macOS on Intel binary distribution |
# | opam-linux_x86_64-i-$MAJMINPAT.tar.gz | No | Linux distribution compatible with CentOS 7, CentOS 8, Fedora 32+, Mageia 8+, ... |
# | opam-linux_x86-i-$MAJMINPAT.tar.gz | No | ... openSUSE 15.3+, Photon OS 4.0+ (3.0+ with updates), Ubuntu 20.04+Linux |
run: |
notes=contributors/changes/v${MAJMINPAT}.md
cat > footer.md <<EOF
Expand All @@ -70,9 +73,6 @@ jobs:
| uninstall-opam-windows_x86-$MAJMINPAT.exe | Partial | 32-bit opam uninstaller |
| unsigned-opam-windows_x86_64-i-$MAJMINPAT.exe | Yes | Unsigned installer. Use when you want to verify you can reproduce the installer ... |
| unsigned-opam-windows_x86-i-$MAJMINPAT.exe | Partial | ... directly from source code. Reproducibility is not yet 100% |
| opam-darwin_x86_64-i-$MAJMINPAT.tar.gz | No | Unsigned macOS on Intel binary distribution |
| opam-linux_x86_64-i-$MAJMINPAT.tar.gz | No | Linux distribution compatible with CentOS 7, CentOS 8, Fedora 32+, Mageia 8+, ... |
| opam-linux_x86-i-$MAJMINPAT.tar.gz | No | ... openSUSE 15.3+, Photon OS 4.0+ (3.0+ with updates), Ubuntu 20.04+Linux |
| opam-windows_x86-i-$MAJMINPAT.sfx | No | Self-extracting executable header used when creating signed installers from ... |
| opam-windows_x86_64-i-$MAJMINPAT.sfx | No | ... the pk7zip contents of the unsigned Windows installers |
| *-u-$MAJMINPAT.* | No | Uninstallers for all the above |
Expand Down Expand Up @@ -102,18 +102,18 @@ jobs:
abi_pattern: win32-windows_x86_64
dkml_host_abi: windows_x86_64
bits: "64"
- gh_os: ubuntu-latest
abi_pattern: manylinux2014-linux_x86
dkml_host_abi: linux_x86
bits: "32"
- gh_os: ubuntu-latest
abi_pattern: manylinux2014-linux_x86_64
dkml_host_abi: linux_x86_64
bits: "64"
- gh_os: macos-latest
abi_pattern: macos-darwin_all
dkml_host_abi: darwin_x86_64
bits: "64"
# - gh_os: ubuntu-latest
# abi_pattern: manylinux2014-linux_x86
# dkml_host_abi: linux_x86
# bits: "32"
# - gh_os: ubuntu-latest
# abi_pattern: manylinux2014-linux_x86_64
# dkml_host_abi: linux_x86_64
# bits: "64"
# - gh_os: macos-latest
# abi_pattern: macos-darwin_all
# dkml_host_abi: darwin_x86_64
# bits: "64"

runs-on: ${{ matrix.gh_os }}
name: build / ${{ matrix.abi_pattern }}
Expand Down

0 comments on commit 5bf1399

Please sign in to comment.