Skip to content

Commit e476be7

Browse files
authored
Merge branch 'main' into multiple-assignment
2 parents 4b3b62d + f7ab683 commit e476be7

File tree

1,944 files changed

+46174
-12885
lines changed

Some content is hidden

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

1,944 files changed

+46174
-12885
lines changed

.github/Dockerfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
FROM ubuntu:22.04
2+
3+
# The default locale is "POSIX" which is just ASCII.
4+
ENV LANG C.UTF-8
5+
ENV DEBIAN_FRONTEND noninteractive
6+
ENV TZ Europe/Zurich
7+
8+
# Add packages to image, set default JDK version
9+
RUN apt-get update && \
10+
apt-get upgrade -y && \
11+
# Use a PPA to get Java 17
12+
apt-get install -y software-properties-common && add-apt-repository ppa:openjdk-r/ppa && \
13+
apt-get install -y bash curl git ssh htop nano vim-tiny zile \
14+
openjdk-8-jdk-headless \
15+
openjdk-17-jdk-headless \
16+
openjdk-21-jdk-headless && \
17+
(curl -fsSL https://deb.nodesource.com/setup_18.x | bash -) && \
18+
apt-get install -y nodejs
19+
20+
21+
# Install sbt
22+
ENV SBT_HOME /usr/local/sbt
23+
ENV PATH ${SBT_HOME}/bin:${PATH}
24+
ENV SBT_VERSION 1.9.0
25+
RUN curl -sL "https://github.com/sbt/sbt/releases/download/v$SBT_VERSION/sbt-$SBT_VERSION.tgz" | gunzip | tar -x -C /usr/local

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
name: "\U0001F389 Suggest a feature"
3-
about: Please create a feature request here https://github.com/lampepfl/dotty/discussions/new?category=feature-requests
3+
about: Please create a feature request here https://github.com/scala/scala3/discussions/new?category=feature-requests
44
title: ''
55
labels: ''
66
assignees: ''
77

88
---
99

10-
Please create a feature request in the [Dotty Discussions](https://github.com/lampepfl/dotty/discussions/new?category=feature-requests).
10+
Please create a feature request in the [Dotty Discussions](https://github.com/scala/scala3/discussions/new?category=feature-requests).

.github/ISSUE_TEMPLATE/improve-error.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This code should be self-contained, reproducible (i.e. produces the expected err
1919
2020
Ideally, we should be able to just copy this code in a file and run `scalac` (and maybe `scala`) to reproduce the issue.
2121
22-
For a good example, see https://github.com/lampepfl/dotty/issues/18657
22+
For a good example, see https://github.com/scala/scala3/issues/18657
2323
-->
2424

2525
```Scala
@@ -44,12 +44,12 @@ for example:
4444

4545
## Why this Error/Warning was not helpful
4646

47-
<!-- For a good example, see https://github.com/lampepfl/dotty/issues/18657 -->
47+
<!-- For a good example, see https://github.com/scala/scala3/issues/18657 -->
4848

4949
The message was unhelpful because...
5050

5151
## Suggested improvement
5252

53-
<!-- For a good example, see https://github.com/lampepfl/dotty/issues/18657 -->
53+
<!-- For a good example, see https://github.com/scala/scala3/issues/18657 -->
5454

5555
It could be made more helpful by...

.github/dependabot.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
version: 2
22
updates:
3-
4-
- package-ecosystem: "github-actions"
3+
- package-ecosystem: github-actions
54
directory: "/"
65
schedule:
7-
interval: "weekly"
6+
interval: weekly
7+
assignees:
8+
- hamzaremmal
9+
reviewers:
10+
- hamzaremmal

0 commit comments

Comments
 (0)