Skip to content

Commit e3d52de

Browse files
committed
Rebuild step
1 parent 78c2f93 commit e3d52de

349 files changed

Lines changed: 19172 additions & 8 deletions

File tree

Some content is hidden

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

.github/workflows/build-linux.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ jobs:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565
run: tsx build/npm/postinstall.ts
6666

67+
- name: Rebuild native modules
68+
run: npm rebuild
69+
6770
- name: Install roopik-roo extension dependencies
6871
working-directory: extensions/roopik-roo
6972
run: |
@@ -118,8 +121,14 @@ jobs:
118121
working-directory: extensions/roopik
119122
run: npm run build
120123

121-
- name: Rebuild native modules
122-
run: npm rebuild --build-from-source
124+
- name: Install build dependencies
125+
run: |
126+
sudo apt-get update
127+
sudo apt-get install -y \
128+
libx11-dev \
129+
libxkbfile-dev \
130+
libkrb5-dev \
131+
libsecret-1-dev
123132
124133
- name: Build Linux application (x64)
125134
env:

.github/workflows/build-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4949
run: tsx build/npm/postinstall.ts
5050

51+
- name: Rebuild native modules
52+
run: npm rebuild
53+
5154
- name: Install roopik-roo extension dependencies
5255
working-directory: extensions/roopik-roo
5356
run: |
@@ -102,9 +105,6 @@ jobs:
102105
working-directory: extensions/roopik
103106
run: npm run build
104107

105-
- name: Rebuild native modules
106-
run: npm rebuild --build-from-source
107-
108108
- name: Build macOS application (arm64)
109109
run: npm run gulp vscode-darwin-arm64
110110

.github/workflows/build-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4949
run: tsx build/npm/postinstall.ts
5050

51+
- name: Rebuild native modules
52+
run: npm rebuild
53+
5154
- name: Install roopik-roo extension dependencies
5255
working-directory: extensions/roopik-roo
5356
shell: bash
@@ -104,9 +107,6 @@ jobs:
104107
working-directory: extensions/roopik
105108
run: npm run build
106109

107-
- name: Rebuild native modules
108-
run: npm rebuild --build-from-source
109-
110110
- name: Clean non-Windows prebuilds from node_modules
111111
shell: bash
112112
run: |

docs/vscodium/.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
tab_width = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.sh]
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.{yml,yaml}]
17+
indent_style = space
18+
indent_size = 2
19+
20+
[*.patch]
21+
trim_trailing_whitespace = false
22+
insert_final_newline = false
23+
24+
[*.svg]
25+
insert_final_newline = false
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Please confirm that this problem is VSCodium-specific**
14+
- [ ] This bug doesn't happen if I use Microsoft's Visual Studio Code. It only happens in VSCodium.
15+
16+
**Please confirm that the issue/resolution isn't already documented**
17+
- [ ] I checked [the Docs page](https://github.com/VSCodium/vscodium/blob/master/docs/index.md) and [the Troubleshooting page](https://github.com/VSCodium/vscodium/blob/master/docs/troubleshooting.md) and my issue is not mentioned there.
18+
19+
**To Reproduce**
20+
Steps to reproduce the behavior:
21+
1. Go to '...'
22+
2. Click on '....'
23+
3. Scroll down to '....'
24+
4. See error
25+
26+
**Expected behavior**
27+
A clear and concise description of what you expected to happen.
28+
29+
**Screenshots**
30+
If applicable, add screenshots to help explain your problem.
31+
32+
**Desktop (please complete the following information):**
33+
- OS: [e.g. Mac OS, Ubuntu 20.04, etc]
34+
- Architecture [e.g. x64, ia32, arm64]
35+
- Version [e.g. 1.33.0]
36+
- App Manager [e.g. Winget, Homebrew, Snap, AUR, RPM, Nix, ...]
37+
- Sandboxed [e.g. no, Flatpak, Snap]
38+
39+
**Additional context**
40+
Add any other context about the problem here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

0 commit comments

Comments
 (0)