Skip to content

Commit fc72d97

Browse files
authored
Merge branch 'master' into iouring-overhaul
2 parents 0e01354 + 5f73c01 commit fc72d97

File tree

184 files changed

+5969
-6850
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+5969
-6850
lines changed

.forgejo/workflows/ci.yaml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,26 @@ jobs:
3131
- name: Build and Test
3232
run: sh ci/aarch64-linux-release.sh
3333
timeout-minutes: 120
34+
aarch64-macos-debug:
35+
runs-on: [self-hosted, aarch64-macos]
36+
steps:
37+
- name: Checkout
38+
uses: actions/checkout@v4
39+
with:
40+
fetch-depth: 0
41+
- name: Build and Test
42+
run: sh ci/aarch64-macos-debug.sh
43+
timeout-minutes: 180
44+
aarch64-macos-release:
45+
runs-on: [self-hosted, aarch64-macos]
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v4
49+
with:
50+
fetch-depth: 0
51+
- name: Build and Test
52+
run: sh ci/aarch64-macos-release.sh
53+
timeout-minutes: 120
3454
loongarch64-linux-debug:
3555
runs-on: [self-hosted, loongarch64-linux]
3656
steps:
@@ -52,7 +72,7 @@ jobs:
5272
run: sh ci/loongarch64-linux-release.sh
5373
timeout-minutes: 180
5474
riscv64-linux-debug:
55-
# if: github.event_name != 'pull_request'
75+
if: github.event_name != 'pull_request'
5676
runs-on: [self-hosted, riscv64-linux]
5777
steps:
5878
- name: Checkout
@@ -63,7 +83,7 @@ jobs:
6383
run: sh ci/riscv64-linux-debug.sh
6484
timeout-minutes: 540
6585
riscv64-linux-release:
66-
# if: github.event_name != 'pull_request'
86+
if: github.event_name != 'pull_request'
6787
runs-on: [self-hosted, riscv64-linux]
6888
steps:
6989
- name: Checkout
@@ -72,7 +92,7 @@ jobs:
7292
fetch-depth: 0
7393
- name: Build and Test
7494
run: sh ci/riscv64-linux-release.sh
75-
timeout-minutes: 420
95+
timeout-minutes: 480
7696
s390x-linux-debug:
7797
runs-on: [self-hosted, s390x-linux]
7898
steps:

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ src/Package/Fetch/testdata/** binary
1515
src/Package/Fetch/git/testdata/** binary
1616

1717
lib/compiler/aro/** linguist-vendored
18+
lib/compiler/resinator/** linguist-vendored
19+
lib/compiler/translate-c/** linguist-vendored
1820
lib/include/** linguist-vendored
1921
lib/libc/** linguist-vendored
2022
lib/libcxx/** linguist-vendored

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
contact_links:
22
- name: Language Proposal
3-
about: Propose to improve the Zig language
4-
url: https://github.com/ziglang/zig/wiki/Language-Proposals
3+
about: "Please do not submit a proposal to change the language"
4+
url: https://ziglang.org/code-of-conduct
55
- name: Question
6-
about: Please use one of the community spaces for questions or general discussions.
7-
url: https://github.com/ziglang/zig/wiki/Community
6+
about: "Please use one of the community spaces instead for questions or general discussions."
7+
url: https://ziglang.org/community
88
- name: C Translation
99
about: "Issues related to `zig translate-c` and `@cImport` are tracked separately."
1010
url: https://github.com/ziglang/translate-c/
1111
- name: Copilot and Other LLMs
12-
about: Please do not use GitHub Copilot or any other LLM to write an issue.
13-
url: https://github.com/ziglang/zig/wiki/Writing-Issues-with-Copilot-and-Other-LLMs
12+
about: "Please do not use GitHub Copilot or any other LLM to write an issue."
13+
url: https://ziglang.org/code-of-conduct

0 commit comments

Comments
 (0)