Skip to content

Commit

Permalink
[gh actions] disable netbsd and solaris builds for now
Browse files Browse the repository at this point in the history
git-svn-id: svn://tug.org/texlive/trunk/Build/source@69559 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
norbusan committed Jan 23, 2024
1 parent 7354387 commit 94e6715
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,15 @@ jobs:
matrix:
arch: [ i386, amd64 ]
os: [ freebsd, netbsd, solaris ]
ci_build: [ true ]
release_build:
- ${{ startsWith(github.ref, 'refs/tags/') }}
include:
- os: freebsd
ci_build: true
- os: netbsd
ci_build: false
- os: solaris
ci_build: false

steps:
- name: checkout-main
Expand All @@ -161,7 +167,7 @@ jobs:
sh .github/scripts/build-tl.sh ${{ matrix.arch }}-${{ matrix.os }} ${{ matrix.os }}
- name: build solaris
uses: vmactions/solaris-vm@v1
if: ${{ false && matrix.os == 'solaris' && (matrix.ci_build || matrix.release_build) }}
if: ${{ matrix.os == 'solaris' && (matrix.ci_build || matrix.release_build) }}
with:
usesh: true
run: |
Expand Down

0 comments on commit 94e6715

Please sign in to comment.