Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5eb57e8

Browse files
ibuclawReposync Bot
authored and
Reposync Bot
committedSep 22, 2024·
Add README, FUNDING, and CI files
1 parent 6738224 commit 5eb57e8

File tree

7 files changed

+988
-0
lines changed

7 files changed

+988
-0
lines changed
 

‎.cirrus.yml

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
common_tasks_template: &COMMON_TASKS_TEMPLATE
2+
# Location of downloaded prerequesites
3+
gcc_deps_cache:
4+
folder: gcc-deps
5+
fingerprint_script: cat gcc/BASE-VER
6+
# Typical build time is ~25 minutes, factor in twice that for waiting time
7+
timeout_in: 120m
8+
# Scripts to configure, build, and test
9+
setup_script: ./buildci.sh setup
10+
build_script: ./buildci.sh build
11+
test_script: |
12+
if [ "${RUN_TESTSUITE:-0}" = "1" ]
13+
then
14+
./buildci.sh testsuite
15+
else
16+
./buildci.sh unittests
17+
fi
18+
# Location of compressed testsuite logs
19+
testsuite_artifacts:
20+
path: logs/**
21+
22+
environment:
23+
CIRRUS_CLONE_DEPTH: 50
24+
25+
# Linux
26+
task:
27+
name: Ubuntu $TASK_NAME_SUFFIX
28+
container:
29+
image: ubuntu:20.04
30+
cpu: 8
31+
memory: 16G
32+
environment:
33+
matrix:
34+
- TASK_NAME_SUFFIX: Testsuite
35+
RUN_TESTSUITE: 1
36+
- TASK_NAME_SUFFIX: Unit Tests
37+
RUN_TESTSUITE: 0
38+
<< : *COMMON_TASKS_TEMPLATE
39+
40+
# FreeBSD
41+
task:
42+
name: FreeBSD $TASK_NAME_SUFFIX
43+
freebsd_instance:
44+
image_family: freebsd-12-2
45+
cpu: 8
46+
memory: 16G
47+
environment:
48+
matrix:
49+
- TASK_NAME_SUFFIX: Testsuite
50+
RUN_TESTSUITE: 1
51+
- TASK_NAME_SUFFIX: Unit Tests
52+
RUN_TESTSUITE: 0
53+
install_bash_script: |
54+
pkg install -y bash
55+
ln -s /usr/local/bin/bash /bin/bash
56+
<< : *COMMON_TASKS_TEMPLATE
57+
58+
# Mac
59+
task:
60+
name: Darwin $TASK_NAME_SUFFIX
61+
osx_instance:
62+
image: catalina-xcode
63+
environment:
64+
matrix:
65+
- TASK_NAME_SUFFIX: Testsuite
66+
RUN_TESTSUITE: 1
67+
- TASK_NAME_SUFFIX: Unit Tests
68+
RUN_TESTSUITE: 0
69+
<< : *COMMON_TASKS_TEMPLATE

‎.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [ ibuclaw ]

‎.github/workflows/main.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
2+
3+
name: Main
4+
on:
5+
- push # branch or tag
6+
7+
jobs:
8+
linux:
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
include:
13+
- job_name: ubuntu-x86_64 (testsuite)
14+
target: x86_64-linux-gnu
15+
- job_name: ubuntu-x86_64 (unittests)
16+
target: x86_64-linux-gnu
17+
- job_name: ubuntu-x86_64 (bootstrap)
18+
target: x86_64-linux-gnu
19+
bootstrap: enable
20+
- job_name: ubuntu-arm
21+
target: arm-linux-gnueabi
22+
- job_name: ubuntu-armhf
23+
target: arm-linux-gnueabihf
24+
- job_name: ubuntu-aarch64
25+
target: aarch64-linux-gnu
26+
- job_name: ubuntu-mips
27+
target: mips-linux-gnu
28+
- job_name: ubuntu-mips64el
29+
target: mips64el-linux-gnuabi64
30+
- job_name: ubuntu-mipsel
31+
target: mipsel-linux-gnu
32+
- job_name: ubuntu-powerpc64le
33+
target: powerpc64le-linux-gnu
34+
- job_name: ubuntu-systemz
35+
target: s390x-linux-gnu
36+
- job_name: ubuntu-sparc64
37+
target: sparc64-linux-gnu
38+
name: ${{ matrix.job_name }}
39+
runs-on: ubuntu-22.04
40+
env:
41+
GCC_CI_TARGET: ${{ matrix.target }}
42+
GCC_CI_BOOTSTRAP: ${{ matrix.bootstrap || 'disable' }}
43+
steps:
44+
- uses: actions/checkout@v4
45+
with:
46+
fetch-depth: 10
47+
- name: Install dependencies
48+
run: ./buildci.sh installdeps
49+
- name: Configure gdc
50+
run: ./buildci.sh configure
51+
- name: Build gdc
52+
run: ./buildci.sh build
53+
- name: Run testsuite
54+
run: ${{ contains(matrix.job_name, 'testsuite') && './buildci.sh testsuite' || 'echo disabled' }}
55+
- name: Run unittests
56+
run: ${{ contains(matrix.job_name, 'unittests') && './buildci.sh unittests' || 'echo disabled' }}

‎.semaphore/semaphore.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
version: v1.0
2+
name: GDC
3+
agent:
4+
machine:
5+
type: e1-standard-2
6+
os_image: ubuntu1804
7+
execution_time_limit:
8+
hours: 3
9+
10+
blocks:
11+
- name: "Ubuntu 18.04"
12+
dependencies: []
13+
execution_time_limit:
14+
hours: 2
15+
task:
16+
jobs:
17+
- name: "Testsuite"
18+
commands:
19+
- checkout
20+
- ./buildci.sh setup
21+
- ./buildci.sh build
22+
- ./buildci.sh testsuite
23+
- name: "Unit Tests"
24+
commands:
25+
- checkout
26+
- ./buildci.sh setup
27+
- ./buildci.sh build
28+
- ./buildci.sh unittests
29+
- name: "OSX 10.15"
30+
dependencies: []
31+
task:
32+
agent:
33+
machine:
34+
type: a1-standard-4
35+
os_image: macos-xcode11
36+
jobs:
37+
- name: "Testsuite"
38+
commands:
39+
- checkout
40+
- ./buildci.sh setup
41+
- ./buildci.sh build
42+
- ./buildci.sh testsuite
43+
- name: "Unit Tests"
44+
commands:
45+
- checkout
46+
- ./buildci.sh setup
47+
- ./buildci.sh build
48+
- ./buildci.sh unittests

‎README.md

+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
## The GDC D Compiler
2+
[![Buildkite](https://img.shields.io/buildkite/58fd9d7cf59f6c774888051edb0e037fad6d97bcf04e53ac4f/ci/mainline.svg?style=flat&logo=dependabot&label=buildkite)](https://buildkite.com/d-programming-gdc/gcc)
3+
[![Cirrus CI](https://img.shields.io/cirrus/github/D-Programming-GDC/gcc/ci/mainline?label=Cirrus%20CI&logo=Cirrus%20CI)](https://cirrus-ci.com/github/D-Programming-GDC/gcc/ci/mainline)
4+
[![Bugzilla Issues](https://img.shields.io/badge/issues-Bugzilla-green.svg?style=flat)](https://gcc.gnu.org/bugzilla/buglist.cgi?component=d&list_id=299901&product=gcc&resolution=---)
5+
[![License](https://img.shields.io/badge/license-GPLv2%2B-green)](https://github.com/D-Programming-GDC/gcc/blob/ci/mainline/COPYING)
6+
7+
GDC is the GCC-based [D language][dlang] compiler, integrating the open source [DMDFE D][dmd] front end
8+
with [GCC][gcc] as the backend. The GNU D Compiler (GDC) project was originally started by David Friedman
9+
in 2004 until early 2007 when he disappeared from the D scene, and was no longer able to maintain GDC.
10+
Following a revival attempt in 2008, GDC is now under the lead of Iain Buclaw who has been steering the
11+
project since 2009 with the assistance of its contributors, without them the project would not have been
12+
nearly as successful as it has been.
13+
14+
Documentation on GDC is available from [the wiki][wiki]. Any bugs or issues found with using GDC should
15+
be reported at [the GCC bugzilla site][bugs] with the bug component set to `d`. For help with GDC, the
16+
[D.gnu][maillist] mailing list is the place to go with questions or problems. There's also a GDC IRC
17+
channel at #d.gdc on FreeNode. Any questions which are related to the D language, but not directly to
18+
the GDC compiler, can be asked in the [D forums][dforum]. You can find more information about D, including
19+
example code, API documentation, tutorials and these forums at the [main D website][dlang].
20+
21+
### Building GDC
22+
23+
Stable GDC releases for production usage should be obtained by downloading stable GCC sources
24+
from the [GCC downloads][gcc-download] site.
25+
For the latest experimental development version, simply download a [GCC snapshot][gcc-snapshot] or
26+
checkout the GCC Git repository. Most GDC development directly targets the GCC Git repository,
27+
so the latest GDC version is always available in the GCC Git.
28+
Do not use the `ci/mainline` branch in this repository, as it is rebased regularly and contains exclusively
29+
CI related changes.
30+
31+
During certain development phases (e.g. when GCC is in a feature freeze) larger GDC changes may be staged
32+
to the `devel/gdc` branch. This branch is rebased irregularly, do not rely on the commit ids to be
33+
stable.
34+
35+
If you need to clone this repo for some reason, you may want to do a shallow clone using the
36+
`--depth 1 --no-single-branch` git options, as this repository is large. To compile GDC, add `--enable-languages=d` to the GCC configure flags and [start building][gdc-build].
37+
38+
### Using GDC
39+
40+
Usage information can be found at ...
41+
42+
### Contributing to GDC
43+
44+
Starting with GCC 9.0.0, GDC has been merged into upstream GCC and all GDC development now follows the usual
45+
GCC development process. Changes to GDC and related code can therefore be submitted
46+
to the [gcc-patches mailing list][patches-ml] for review.
47+
48+
It is possible to directly post patches to the [mailing list][patches-ml] and not to use this repository at all.
49+
We however recommend using this repository to make use of the CI checks and the github review workflow.
50+
51+
#### Submitting Changes
52+
53+
To submit changes to GDC, simply fork this repository, create a new feature branch based on the `ci/mainline` branch,
54+
then open a pull request against the **mainline** branch. We recommend using full clones for development, allthough
55+
using shallow clones should also be possible. In code:
56+
57+
```bash
58+
# Initial one time setup:
59+
# For repository on github, then clone your fork
60+
git clone git@github.com:[you]/gcc.git
61+
cd gcc
62+
# Add the gdc repository as a remote
63+
git remote add gdc git@github.com:D-Programming-GDC/gcc.git
64+
65+
# Do this for every patch:
66+
# Fetch latest upstream changes
67+
git remote update
68+
# Base a new branch on gdc/mainline
69+
git checkout gdc/ci/mainline
70+
git checkout -b pr12345
71+
# Make changes, commit
72+
git commit [...]
73+
git push origin pr12345:pr12345
74+
# Open a pull request on github, target branch: mainline
75+
```
76+
Opening a pull request will automatically trigger our CI and test your changes on various machines.
77+
78+
#### Changelogs
79+
The GCC project requires keeping changes in the `Changelog` files. GCC ships a script which can generate
80+
Changelog templates for us if we feed it a diff:
81+
```bash
82+
git diff gdc/ci/mainline | ./contrib/mklog
83+
```
84+
*Note:* The above command generates the diff between `gdc/ci/mainline` and your local branch. If `gdc/ci/mainline` was
85+
updated and you did a `git remote update`, `gdc/mainline` may have changes which are not yet in your branch.
86+
In that case, rebase onto `gdc/mainline` first.
87+
88+
The command outputs something like this:
89+
```
90+
ChangeLog:
91+
92+
2019-02-03 Johannes Pfau <johannespfau@example.com>
93+
94+
* test.d: New file.
95+
96+
gcc/d/ChangeLog:
97+
98+
2019-02-03 Johannes Pfau <johannespfau@example.com>
99+
100+
* dfile.txt: New file.
101+
102+
libphobos/ChangeLog:
103+
104+
2019-02-03 Johannes Pfau <johannespfau@example.com>
105+
106+
* phobosfile.txt: New file.
107+
108+
```
109+
110+
The `ChangeLog:`, `libphobos/ChangeLog:` part gives the file into which the following changes need to be added.
111+
Complete the changelog text and use the existing entries in the files for reference or see
112+
the [GCC][changelog-doc] and [GNU][changelog-doc2] documentation. Also make sure to adhere to the line length limit of 80 characters. Then make the changelog somehow available for review:
113+
Either commit the files, or preferable, just copy and paste the edited text output of `mklog` into your
114+
pull request description.
115+
116+
117+
### Getting Changes Into GCC Git
118+
119+
After changes have been reviewed on github, they have to be pushed into the GCC Git. Pull requests will
120+
not get merged into this repository. The following steps can be handled by GDC maintainers, although it is
121+
possible to perform these by yourself as well.
122+
123+
##### Sumbitting to the gcc-patches Mailing List
124+
125+
Once the review and CI have passed on the github pull request page, the changes need to be submitted to the
126+
`gcc-patches` mailing list. This can easily be done using [git send-email][git-send-email]:
127+
128+
1. You might want to squash the commits. Each commit will become one email/patch so it might make sense
129+
to combine commits here.
130+
2. The changelog should preferrably be pasted into the email text, so do not include
131+
commits modifying the changelog files.
132+
3. If you had to regenerate any autogenerated files (e.g. configure from configure.ac)
133+
you may keep these changes out of the patch for simplified review. The generated files
134+
should still be present in the changelog.
135+
136+
You'll have to configure `git send-email` once after you checked out the repository:
137+
```bash
138+
git config sendemail.to gcc-patches@gcc.gnu.org
139+
```
140+
If you never used `git send-email` before, you'll also have to setup the SMTP settings once.
141+
See [here][git-send-email] for details.
142+
143+
Now to send the patches:
144+
```bash
145+
# Check which commits will be sent:
146+
git log gdc/ci/mainline..
147+
# Check the complete diff which will be sent:
148+
git diff gdc/ci/mainline..
149+
# Dry run to verify everything again
150+
git send-email gdc/ci/mainline --annotate --dry-run
151+
# Send the patches
152+
git send-email gdc/ci/mainline --annotate
153+
```
154+
155+
If you send multiple patches and want to write an introduction email, use the `--compose` argument for
156+
`git send-email`. You can also generate patch files like this:
157+
```bash
158+
git format-patch gdc/ci/mainline..
159+
# Edit the *.patch files, add messages etc.
160+
# Now send the patches
161+
git send-email *.patch --dry-run
162+
git send-email *.patch
163+
```
164+
165+
##### Pushing Changes to Git
166+
167+
This section is only relevant for GDC maintainers with GCC Git write access. There are certain rules when
168+
pushing to Git, usually you're only allowed to push **after** the patches have been reviewed on the mailing list.
169+
Refer to the [GCC documentation][gcc-git] for details.
170+
171+
### Repository Information
172+
173+
This repository is a fork of the [GCC git mirror][gcc-github].
174+
175+
#### Directory Structure
176+
177+
All code branches contain the complete GCC tree. D sources are in `gcc/d` for the compiler
178+
and in `libphobos` for the runtime library. Changes to files in `gcc/d/dmd` or `libphobos`
179+
should be submitted to the [upstream dlang repositories][dlang-github] first if possible.
180+
Refer to [gcc/d/README.gcc][gcc-d-readme] for more details.
181+
182+
#### Branches
183+
184+
Branches in this repository are organized in the following way:
185+
186+
* CI branches: The `ci/mainline` branch and release branches `ci/gcc-*` are based on the same
187+
branches in the upstream GCC git repository. The only changes compared to the upstream branches
188+
are CI-related setup commits. CI branches are updated automatically to be kept in sync with
189+
upstream and are rebased onto the upstream changes. These branches are effectively readonly:
190+
We never merge into the branches in this repository. The CI related changes make it possible
191+
to run CI based tests for any PR based on these branches, which is their sole purpose.
192+
* The `devel/gdc` branch: If GCC is in a late [development stage][gcc-stage] this branch can accumulate
193+
changes for the GCC release after the next one. It is essentially used to allow periodic merges from
194+
[upstream DMD][dlang-github] when GCC development is frozen. Changes in the GCC `mainline` branch
195+
are manually merged into this branch. When GCC enters stage 1 development again, this branch will be
196+
rebased and pushed to upstream `mainline`. After that, the branch in this repository will be **rebased**
197+
to mainline.
198+
* Backport branches: The `gcc-*-bp` branches contain D frontend and library feature updates for released GCC versions.
199+
Regression fixes should target the main `gcc-*-branch` branches instead, according to GCC rules.
200+
201+
202+
203+
[home]: https://gdcproject.org
204+
[dlang]: https://dlang.org
205+
[gcc]: https://gcc.gnu.org
206+
[dforum]: https://forum.dlang.org
207+
[dmd]: https://github.com/dlang/dmd
208+
[wiki]: https://wiki.dlang.org/GDC
209+
[bugs]: https://gcc.gnu.org/bugzilla
210+
[maillist]: https://forum.dlang.org/group/D.gnu
211+
[email]: mailto:ibuclaw@gdcproject.org
212+
[gcc-devel]: https://gcc.gnu.org/git/?p=gcc.git;a=shortlog
213+
[patches-ml]: https://gcc.gnu.org/lists.html
214+
[gcc-github]: https://github.com/gcc-mirror/gcc
215+
[gcc-git]: https://gcc.gnu.org/gitwrite.html
216+
[gcc-stage]: https://www.gnu.org/software/gcc/develop.html
217+
[dlang-github]: https://github.com/dlang
218+
[gdc-build]: https://wiki.dlang.org/GDC/Installation/Generic
219+
[changelog-doc]: https://www.gnu.org/software/gcc/codingconventions.html#ChangeLogs
220+
[changelog-doc2]: https://www.gnu.org/prep/standards/standards.html#Change-Logs
221+
[git-send-email]: https://www.freedesktop.org/wiki/Software/PulseAudio/HowToUseGitSendEmail/
222+
[gcc-download]: https://www.gnu.org/software/gcc/releases.html
223+
[gcc-d-readme]: https://github.com/D-Programming-GDC/gcc/blob/ci/mainline/gcc/d/README.gcc
224+
[gcc-snapshot]: https://www.gnu.org/software/gcc/snapshots.html

‎azure-pipelines.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
jobs:
2+
- job: Windows
3+
timeoutInMinutes: 120
4+
pool:
5+
vmImage: 'vs2017-win2016'
6+
strategy:
7+
matrix:
8+
x64:
9+
OS: win64
10+
MODEL: 64
11+
ARCH: x64
12+
x86:
13+
OS: win32
14+
MODEL: 32
15+
ARCH: x86
16+
steps:
17+
- checkout: self
18+
fetchDepth: 1
19+
- script: |
20+
git clone https://github.com/lazka/msys2-ci-base.git %CD:~0,2%\msys64
21+
%CD:~0,2%\msys64\usr\bin\rm -rf %CD:~0,2%\msys64\.git
22+
displayName: Install MSYS2
23+
- script: |
24+
set PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
25+
%CD:~0,2%\msys64\usr\bin\pacman --noconfirm -Syyuu
26+
displayName: Update MSYS2
27+
28+
- job: Linux_X86_ML
29+
timeoutInMinutes: 120
30+
pool:
31+
vmImage: 'ubuntu-16.04'
32+
variables:
33+
AZURE: 'true'
34+
steps:
35+
- checkout: self
36+
fetchDepth: 1
37+
- script: |
38+
./buildci.sh setup
39+
displayName: Install prerequisites
40+
- script: |
41+
./buildci.sh build
42+
displayName: Building GCC
43+
- script: |
44+
./buildci.sh testsuite
45+
displayName: Running testsuite
46+
- script: |
47+
./buildci.sh unittests
48+
displayName: Running unit tests

‎buildci.sh

+542
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.