File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ permissions:
16
16
contents : read
17
17
jobs :
18
18
release :
19
- runs-on : macos-12
19
+ runs-on : macos-15
20
20
# The maximum access is "read" for PRs from public forked repos
21
21
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
22
22
permissions :
Original file line number Diff line number Diff line change @@ -14,11 +14,14 @@ jobs:
14
14
integration :
15
15
name : Integration tests
16
16
strategy :
17
+ fail-fast : false
17
18
matrix :
18
19
# macos-13-large is used as macos-13 seems too flaky.
19
- # macos-14 (ARM) cannot be used for the most part of the job
20
+ # macos-14 (ARM) and later cannot be used for the most part of the job
20
21
# due to the lack of the support for nested virt.
21
- platform : [macos-12, macos-13-large]
22
+ #
23
+ # TODO: add macos-15-large https://github.com/lima-vm/socket_vmnet/pull/63
24
+ platform : [macos-13-large, macos-14-large]
22
25
runs-on : ${{ matrix.platform }}
23
26
timeout-minutes : 40
24
27
steps :
Original file line number Diff line number Diff line change 1
1
# PREFIX should be only writable by the root to avoid privilege escalation with launchd or sudo
2
2
PREFIX ?= /opt/socket_vmnet
3
3
4
+ # DEBUG=1 is known to break reproducible builds
5
+ DEBUG ?=
6
+
4
7
export SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=% ct)
5
8
# https://reproducible-builds.org/docs/archives/
6
9
TAR ?= gtar --sort=name --mtime="@$(SOURCE_DATE_EPOCH ) " --owner=0 --group=0 --numeric-owner --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime
@@ -10,7 +13,10 @@ GZIP ?= gzip -9 -n
10
13
DIFFOSCOPE ?= diffoscope
11
14
STRIP ?= strip
12
15
13
- CFLAGS ?= -O3 -g
16
+ CFLAGS ?= -O3
17
+ ifeq ($(DEBUG ) ,1)
18
+ CFLAGS += -g
19
+ endif
14
20
15
21
VERSION ?= $(shell git describe --match 'v[0-9]* ' --dirty='.m' --always --tags)
16
22
VERSION_TRIMMED := $(VERSION:v%=% )
You can’t perform that action at this time.
0 commit comments