Skip to content

Commit a636d75

Browse files
committed
Merge branch 'topic/rm_edge' into 'master'
Don't use `edge` branch to build ALS on GitHub See merge request eng/ide/ada_language_server!2156
2 parents fa8fd50 + eea3c02 commit a636d75

File tree

8 files changed

+9
-14
lines changed

8 files changed

+9
-14
lines changed

.github/workflows/build-binaries.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ jobs:
4747
uses: actions/checkout@v3
4848
with:
4949
fetch-depth: 0
50-
- name: Fetch edge branch (for scheduled build only)
51-
shell: bash
52-
if: github.event.schedule
53-
run: git checkout edge
5450
- name: Get GNAT toolchain with alire
5551
shell: bash
5652
run: |

.github/workflows/pack-binaries.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ create_changelog >"$ext_dir/CHANGELOG.md"
3232
# digit of the version:
3333
# 0 --> pre-release
3434
# 1 --> release
35-
# 2 --> pre-release (based on edge branch)
36-
# 3 --> release (based on edge branch)
35+
# 2 --> pre-release (based on master branch in edge mode)
36+
# 3 --> release (based on master branch in edge mode)
3737
case "$TAG" in
3838
*1 | *3)
3939
pre_release=""

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/AdaCore/ada_language_server)](https://github.com/AdaCore/ada_language_server/releases)
66
[![VS Marketplace](https://img.shields.io/visual-studio-marketplace/v/adacore.ada?label=VS%20Marketplace)](https://marketplace.visualstudio.com/items?itemName=AdaCore.ada)
77
[![Open VSX Registry](https://img.shields.io/open-vsx/v/AdaCore/ada?label=Open%20VSX)](https://open-vsx.org/extension/AdaCore/ada)
8-
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/AdaCore/ada_language_server/tree/edge)
8+
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/AdaCore/ada_language_server/)
99

1010
This repository contains an implementation of the [Microsoft Language Server Protocol](https://microsoft.github.io/language-server-protocol/)
1111
for Ada/SPARK and GPR project files.

doc/devel/HACKING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ To release a new version of the VS Code extension, just put a tag with of the fo
152152
`22.0.3`, where `22.0` matches the current GNAT Studio development version. The
153153
corresponding `git` command is
154154
```
155-
git checkout edge
155+
git checkout master
156156
git tag -a 22.0.3
157157
```
158158

doc/devel/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
cd ada_language_server
1616

1717
1. If you know dependency commits numbers then create `deps.txt` file
18-
with lines `<repo_name>=commit`. Otherwise checkout `edge` branch.
18+
with lines `<repo_name>=commit`. Otherwise checkout `master` branch.
1919

2020
1. Use `alr toolchain --select` to install the latest available versions of `gnat` and `gprbuild`.
2121

doc/refactoring_tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Demo source is `replace_type/` in [Code Samples](https://github.com/AdaCore/ada_
247247

248248
* For an unresolved name, suggests all packages that can be imported and prefix to be added so that that the name gets resolved.
249249

250-
[Source](https://github.com/AdaCore/lal-refactor/blob/edge/src/lal_refactor-auto_import.adb` in [LAL Refactor repository](https://github.com/AdaCore/lal-refactor).
250+
[Source](https://github.com/AdaCore/lal-refactor/blob/main/src/lal_refactor-auto_import.adb` in [LAL Refactor repository](https://github.com/AdaCore/lal-refactor).
251251

252252
Demo source is `auto_import/` in [Code Samples](https://github.com/AdaCore/ada_language_server/blob/master/integration/vscode/Code%20Samples/refactoring_demos/).
253253

integration/vscode/ada/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/AdaCore/ada_language_server)](https://github.com/AdaCore/ada_language_server/releases)
88
[![VS Marketplace](https://img.shields.io/visual-studio-marketplace/v/adacore.ada?label=VS%20Marketplace)](https://marketplace.visualstudio.com/items?itemName=AdaCore.ada)
99
[![Open VSX Registry](https://img.shields.io/open-vsx/v/AdaCore/ada?label=Open%20VSX)](https://open-vsx.org/extension/AdaCore/ada)
10-
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/AdaCore/ada_language_server/tree/edge)
10+
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/AdaCore/ada_language_server/)
1111

1212
This extension provides support for the Ada and SPARK programming languages in VS Code via the [Ada Language Server](https://github.com/AdaCore/ada_language_server) based on the [Libadalang library](https://github.com/AdaCore/libadalang).
1313

scripts/build_als.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ repo_xdiff=xdiff
6262

6363
# Pins branches (master by default)
6464

65-
branch_gnatdoc=edge
66-
branch_lal_refactor=edge
67-
branch_gnatformat=edge
65+
branch_lal_refactor=main
66+
branch_gnatformat=main
6867
branch_libgpr2=main
6968
branch_prettier_ada=main
7069
branch_vss_text=main

0 commit comments

Comments
 (0)