mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
try to use matrix.target to name release package.
This commit is contained in:
parent
beb2bad2fd
commit
dbb6e5894e
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
|
@ -17,8 +17,8 @@ jobs:
|
|||
# set default docker platform and image suffix.
|
||||
- {docker-platform: linux/amd64 ,docker-image-suffix: '', makeopts: musl }
|
||||
- {target: arm64 ,docker-platform: linux/arm64 ,docker-image-suffix: 'aarch64' }
|
||||
- {image: deb, makeopts: deb, target: x86-64 }
|
||||
- {image: pandoc, makeopts: docs, target: x86-64 }
|
||||
- {image: deb, makeopts: deb, target: x86-64 ,docker-platform: linux/arm64}
|
||||
- {image: pandoc, makeopts: docs, target: x86-64 ,docker-platform: linux/arm64}
|
||||
|
||||
environment: SET_VERSION
|
||||
|
||||
|
|
|
|||
1
.github/workflows/osx.yml
vendored
1
.github/workflows/osx.yml
vendored
|
|
@ -29,6 +29,7 @@ jobs:
|
|||
CFLAGS: -mmacosx-version-min=10.9
|
||||
CXXFLAGS: -mmacosx-version-min=10.9
|
||||
LDFLAGS: -mmacosx-version-min=10.9
|
||||
ARCH: ${{ matrix.target }}
|
||||
run: |
|
||||
gcc -v
|
||||
./bootstrap
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ brewpr:
|
|||
git pull
|
||||
if [ `uname` = 'Darwin' ];then brew bump-formula-pr -v --url=https://github.com/roswell/roswell/archive/`git describe --abbrev=0 --tags`.tar.gz roswell; fi
|
||||
|
||||
PACK = $(PACKAGE)-$(VERSION)-$(shell uname -s | tr '[A-Z]' '[a-z]' | sed -E 's/([^-]*).*/\1/')-$(shell uname -m)$(SBCL_BIN_VARIANT)
|
||||
PACK = $(PACKAGE)-$(VERSION)-$(shell uname -s | tr '[A-Z]' '[a-z]' | sed -E 's/([^-]*).*/\1/')-$(ARCH)$(SBCL_BIN_VARIANT)
|
||||
|
||||
roswell/Makefile:
|
||||
rm -rf roswell
|
||||
|
|
|
|||
Loading…
Reference in a new issue