Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rfomin committed Aug 3, 2024
1 parent 35fb137 commit 4c8fd20
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ jobs:
pkg-path: pkg/osx/*.dmg
pkg-dir: pkg/osx

- name: macOS x86 Clang
os: macos-13
compiler: clang
shell: bash
artifacts: true
pkg-path: pkg/osx/*.dmg
pkg-dir: pkg/osx

- name: MSYS2 UCRT64
os: windows-latest
compiler: gcc
Expand Down
8 changes: 6 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ fi
AC_CANONICAL_TARGET
TARGET_OS=""
AS_CASE([$target_cpu],
[x86_64|aarch64*],
[x86_64],
[
TARGET_OS="64"
TARGET_OS="x64"
],
[aarch64*|arm*],
[
TARGET_OS="arm"
],
[i?86|arm*],
[
Expand Down
8 changes: 7 additions & 1 deletion pkg/osx/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ DOC_FILES += README.Strife.md NOT-BUGS.md

export MACOSX_DEPLOYMENT_TARGET=10.7

ifeq ($(TARGET_OS),arm)
POSTFIX=arm64
else
POSTFIX=x86
endif

STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-$(POSTFIX).dmg

TOPLEVEL=../..
TOPLEVEL_DOCS=$(patsubst %,../../%,$(DOC_FILES))
Expand Down
2 changes: 1 addition & 1 deletion pkg/win32/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include ../config.make

TOPLEVEL=../..

ifeq ($(TARGET_OS),64)
ifeq ($(TARGET_OS),x64)
POSTFIX=win64
else
POSTFIX=win32
Expand Down

0 comments on commit 4c8fd20

Please sign in to comment.