Skip to content

Commit

Permalink
separate update from build
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Oct 31, 2024
1 parent 84f4848 commit ae205c2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
include:
# default lisp used is sbcl-bin/2.4.8
- lisp: 'sbcl-bin/2.4.8'
os: freebsd
- { suffix: '' ,release: '13.3'}
- { suffix: '-13.2',release: '13.2'}
- { suffix: '-13.3',release: '13.3'}
Expand Down Expand Up @@ -65,7 +66,7 @@ jobs:
ros install ${{ matrix.lisp }}
ros install snmsts/sn.github roswell/sbcl_bin
sudo bash -c 'cd zstd/lib; gmake PREFIX=/usr CFLAGS="-fPIC" install-includes install-static clean'
sudo -E gmake latest-version precompile-freebsd compile postcompile-freebsd archive upload-archive;
sudo -E gmake latest-version precompile-freebsd compile postcompile-freebsd archive;
- if: ${{ matrix.target == 'x86' }}
name: Test on FreeBSD
id: test
Expand All @@ -80,4 +81,18 @@ jobs:
ros install snmsts/sn.github roswell/sbcl_bin
run: |
bash -c 'cd zstd/lib; gmake PREFIX=/usr LIBDIR=/usr/lib32 CFLAGS="-m32 -fPIC" install-includes install-static clean'
gmake latest-version precompile-freebsd compile postcompile-freebsd archive upload-archive;
gmake latest-version precompile-freebsd compile postcompile-freebsd archive;
- name: upload
env:
GITHUB_OAUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ secrets.VERSION }}
ARCH: ${{ matrix.target }}
IMAGE: ${{ matrix.image }}
SUFFIX: ${{ matrix.suffix }}
LINKFLAGS: ${{ matrix.linkflags }}
DOCKER_PLATFORM: ${{ matrix.docker-platform }}
DOCKER_IMAGE_SUFFIX: ${{ matrix.docker-image-suffix }}
run: |
OS=${{ matrix.os }} make latest-version archive
ls
env FILE=`ls *.bz2` make latest-version upload-archive

0 comments on commit ae205c2

Please sign in to comment.