Skip to content

Commit

Permalink
Merge branch 'main' into multiple-assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kyouko-taiga authored Jun 11, 2024
2 parents 4b3b62d + f7ab683 commit e476be7
Show file tree
Hide file tree
Showing 1,944 changed files with 46,174 additions and 12,885 deletions.
25 changes: 25 additions & 0 deletions .github/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM ubuntu:22.04

# The default locale is "POSIX" which is just ASCII.
ENV LANG C.UTF-8
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Europe/Zurich

# Add packages to image, set default JDK version
RUN apt-get update && \
apt-get upgrade -y && \
# Use a PPA to get Java 17
apt-get install -y software-properties-common && add-apt-repository ppa:openjdk-r/ppa && \
apt-get install -y bash curl git ssh htop nano vim-tiny zile \
openjdk-8-jdk-headless \
openjdk-17-jdk-headless \
openjdk-21-jdk-headless && \
(curl -fsSL https://deb.nodesource.com/setup_18.x | bash -) && \
apt-get install -y nodejs


# Install sbt
ENV SBT_HOME /usr/local/sbt
ENV PATH ${SBT_HOME}/bin:${PATH}
ENV SBT_VERSION 1.9.0
RUN curl -sL "https://github.com/sbt/sbt/releases/download/v$SBT_VERSION/sbt-$SBT_VERSION.tgz" | gunzip | tar -x -C /usr/local
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
name: "\U0001F389 Suggest a feature"
about: Please create a feature request here https://github.com/lampepfl/dotty/discussions/new?category=feature-requests
about: Please create a feature request here https://github.com/scala/scala3/discussions/new?category=feature-requests
title: ''
labels: ''
assignees: ''

---

Please create a feature request in the [Dotty Discussions](https://github.com/lampepfl/dotty/discussions/new?category=feature-requests).
Please create a feature request in the [Dotty Discussions](https://github.com/scala/scala3/discussions/new?category=feature-requests).
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/improve-error.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This code should be self-contained, reproducible (i.e. produces the expected err
Ideally, we should be able to just copy this code in a file and run `scalac` (and maybe `scala`) to reproduce the issue.
For a good example, see https://github.com/lampepfl/dotty/issues/18657
For a good example, see https://github.com/scala/scala3/issues/18657
-->

```Scala
Expand All @@ -44,12 +44,12 @@ for example:

## Why this Error/Warning was not helpful

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

The message was unhelpful because...

## Suggested improvement

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

It could be made more helpful by...
9 changes: 6 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
version: 2
updates:

- package-ecosystem: "github-actions"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "weekly"
interval: weekly
assignees:
- hamzaremmal
reviewers:
- hamzaremmal
Loading

0 comments on commit e476be7

Please sign in to comment.