mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-17 21:24:40 +10:00
Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1596e9820 | ||
|
|
3ccdd1171d | ||
|
|
4dbc77dbba | ||
|
|
1991d1af61 | ||
|
|
56cce9d14c | ||
|
|
cf28585423 | ||
|
|
1b421c701c | ||
|
|
85da65c0b0 | ||
|
|
1633faf377 | ||
|
|
2564115929 | ||
|
|
dd6e08a285 | ||
|
|
b5df7d5af8 | ||
|
|
8959faeca9 | ||
|
|
7391746c6b | ||
|
|
833fcec1e8 | ||
|
|
576145f38e | ||
|
|
c1dd804250 | ||
|
|
83cfe077ee | ||
|
|
a3129e3f57 | ||
|
|
dfa09d149e | ||
|
|
098cab67bd | ||
|
|
dc649ff259 | ||
|
|
d408fcc060 | ||
|
|
0f3bba8d9f | ||
|
|
213baf8651 | ||
|
|
5f035559e5 | ||
|
|
58823c7ad8 | ||
|
|
f4a46d1c7b | ||
|
|
bfcfedb1e8 | ||
|
|
74d06bf01d |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
vscode
|
vscode
|
||||||
|
VS*/*
|
||||||
@@ -14,12 +14,15 @@ language: node_js
|
|||||||
node_js: "8"
|
node_js: "8"
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
||||||
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
- ./install_deps.sh
|
- ./install_deps.sh
|
||||||
- . get_repo.sh
|
- . get_repo.sh
|
||||||
- . check_tags.sh
|
- . check_tags.sh
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./build.sh
|
- ./build.sh
|
||||||
|
- ./trigger-azure.sh
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- ./create_zip.sh
|
- ./create_zip.sh
|
||||||
|
|||||||
69
DOCS.md
Normal file
69
DOCS.md
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
# More Info
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
- [Getting all the Telemetry Out](#disable-telemetry)
|
||||||
|
- [Extensions + Marketplace](#extensions-marketplace)
|
||||||
|
- [Migrating from Visual Studio Code to VSCodium](#migrating)
|
||||||
|
- [How do I press and hold a key and have it repeat in VSCodium?](#press-and-hold)
|
||||||
|
- [How do I open VSCodium from the terminal?](#terminal-support)
|
||||||
|
|
||||||
|
## <a id="disable-telemetry"></a>Getting all the Telemetry Out
|
||||||
|
Even though we do not pass the telemetry build flags (and go out of our way to cripple the baked-in telemetry), Microsoft will still track usage by default.
|
||||||
|
|
||||||
|
We do however set the default `telemetry.enableCrashReporter` and `telemetry.enableTelemetry` values to false. You can see those by viewing your VSCodium settings.json and searching for `telemetry`.
|
||||||
|
|
||||||
|
The instructions [here](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting) and [here](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-crash-reporting) help with explaining and toggling telemetry.
|
||||||
|
|
||||||
|
It is also highly recommended that you review all the settings that "use online services" by following [these instructions](https://code.visualstudio.com/docs/supporting/faq#_managing-online-services). The `@tag:usesOnlineServices` filter on the settings page will show that by default:
|
||||||
|
- Extensions auto check for updates and auto install updates
|
||||||
|
- Searches within the app are sent to an online service for "natural language processing"
|
||||||
|
- Updates to the app are fetched in the background
|
||||||
|
|
||||||
|
These can all be disabled.
|
||||||
|
|
||||||
|
__Please note that some extensions send telemetry data to Microsoft as well. We have no control over this and can only recommend removing the extension.__
|
||||||
|
|
||||||
|
_(For example the C# extension `ms-vscode.csharp` sends tracking data to Microsoft.)_
|
||||||
|
|
||||||
|
## <a id="extensions-marketplace"></a>Extensions + Marketplace
|
||||||
|
Until something more open comes around, we use the Microsoft Marketplace/Extensions in the `product.json` file. Those links are licensed under MIT as per [the comments on this issue.](https://github.com/Microsoft/vscode/issues/31168#issuecomment-317319063)
|
||||||
|
|
||||||
|
## <a id="migrating"></a>Migrating from Visual Studio Code to VSCodium
|
||||||
|
VSCodium (and a freshly cloned copy of vscode built from source) stores its extension files in `~/.vscode-oss`. So if you currently have Visual Studio Code installed, your extensions won't automatically populate. You can reinstall your extensions from the Marketplace in VSCodium, or copy the `extensions` from `~/.vscode/extensions` to `~/.vscode-oss/extensions`.
|
||||||
|
|
||||||
|
Visual Studio Code stores its `keybindings.json` and `settings.json` file in the these locations:
|
||||||
|
- __Windows__: `%APPDATA%\Code\User`
|
||||||
|
- __macOS__: `$HOME/Library/Application Support/Code/User`
|
||||||
|
- __Linux__: `$HOME/.config/Code/User`
|
||||||
|
|
||||||
|
You can copy these files to the VSCodium user settings folder:
|
||||||
|
- __Windows__: `%APPDATA%\VSCodium\User`
|
||||||
|
- __macOS__: `$HOME/Library/Application Support/VSCodium/User`
|
||||||
|
- __Linux__: `$HOME/.config/VSCodium/User`
|
||||||
|
|
||||||
|
To copy your settings manually:
|
||||||
|
- In Visual Studio Code, go to Settings (Command+, if on a Mac)
|
||||||
|
- Click the three dots `...` and choose 'Open settings.json'
|
||||||
|
- Copy the contents of settings.json into the same place in VSCodium
|
||||||
|
|
||||||
|
## <a id="press-and-hold"></a>How do I press and hold a key and have it repeat in VSCodium (Mac)?
|
||||||
|
This is a common question for Visual Studio Code and the procedure is slightly different in VSCodium because the `defaults` path is different.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ defaults write com.visualstudio.code.oss ApplePressAndHoldEnabled -bool false
|
||||||
|
```
|
||||||
|
|
||||||
|
## <a id="terminal-support"></a>How do I open VSCodium from the terminal?
|
||||||
|
- Go to the command palette (View | Command Palette...)
|
||||||
|
- Choose `Shell command: Install 'vscodium' command in PATH`.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
This allows you to open files or directories in VSCodium directly from your terminal:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
~/in-my-project $ vscodium . # open this directory
|
||||||
|
~/in-my-project $ vscodium file.txt # open this file
|
||||||
|
```
|
||||||
|
|
||||||
|
Feel free to alias this command to something easier to type in your shell profile (e.g. `alias code=vscodium`).
|
||||||
68
README.md
68
README.md
@@ -1,19 +1,28 @@
|
|||||||
# VSCodium
|
<div id="vscodium-logo" align="center">
|
||||||
|
<br />
|
||||||
|
<img src="./src/resources/linux/code.png" alt="VSCodium Logo" width="200"/>
|
||||||
|
<h1>VSCodium</h1>
|
||||||
|
<h3>Free/Libre Open Source Software Binaries of VSCode</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
### Free/Libre Open Source Software Binaries of VSCode
|
<div id="badges" align="center">
|
||||||
|
|
||||||
|
[](https://github.com/vscodium/vscodium/releases)
|
||||||
|
[](https://dev.azure.com/vscodium/VSCodium/_build?definitionId=1)
|
||||||
[](https://travis-ci.com/VSCodium/vscodium)
|
[](https://travis-ci.com/VSCodium/vscodium)
|
||||||
[](https://github.com/vscodium/vscodium/releases)
|
|
||||||
[](https://github.com/VSCodium/vscodium/blob/master/LICENSE)
|
[](https://github.com/VSCodium/vscodium/blob/master/LICENSE)
|
||||||
|
[](https://gitter.im/VSCodium/Lobby)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
- [Download/Install](#download-install)
|
- [Download/Install](#download-install)
|
||||||
- [Install with Brew](#install-with-brew)
|
- [Install with Brew](#install-with-brew)
|
||||||
|
- [Install with Chocolatey](#install-with-choco)
|
||||||
- [Install with Package Manager](#install-with-package-manager)
|
- [Install with Package Manager](#install-with-package-manager)
|
||||||
- [Why Does This Exist](#why)
|
- [Why Does This Exist](#why)
|
||||||
- [Getting all the Telemetry Out](#disable-telemetry)
|
- [More Info](#more-info)
|
||||||
- [Supported OS](#supported-os)
|
- [Supported OS](#supported-os)
|
||||||
- [Extensions + Marketplace](#extensions-marketplace)
|
|
||||||
- [Migrating from Visual Studio Code to VSCodium](#migrating)
|
|
||||||
|
|
||||||
## <a id="download-install"></a>Download/Install
|
## <a id="download-install"></a>Download/Install
|
||||||
:tada: :tada: [Download latest release here](https://github.com/VSCodium/vscodium/releases) :tada: :tada:
|
:tada: :tada: [Download latest release here](https://github.com/VSCodium/vscodium/releases) :tada: :tada:
|
||||||
@@ -26,6 +35,12 @@ brew cask install vscodium
|
|||||||
|
|
||||||
_Note: if you see "App can’t be opened because it is from an unidentified developer" when opening VSCodium the first time, you can right-click the application and choose Open. This should only be required the first time opening on a Mac._
|
_Note: if you see "App can’t be opened because it is from an unidentified developer" when opening VSCodium the first time, you can right-click the application and choose Open. This should only be required the first time opening on a Mac._
|
||||||
|
|
||||||
|
#### <a id="install-with-choco"></a>Install with Chocolatey (Windows)
|
||||||
|
If you use Windows and have [Chocolatey](https://chocolatey.org) installed (thanks to [@Thilas](https://github.com/Thilas)):
|
||||||
|
```bash
|
||||||
|
choco install vscodium
|
||||||
|
```
|
||||||
|
|
||||||
#### <a id="install-with-package-manager"></a>Install with Package Manager (Linux)
|
#### <a id="install-with-package-manager"></a>Install with Package Manager (Linux)
|
||||||
You can always install using the downloads (deb, rpm, tar) on the [releases page](https://github.com/VSCodium/vscodium/releases), but you can also install using your favorite package manager and get automatic updates. [@paulcarroty](https://github.com/paulcarroty) has set up a repository with instructions [here](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo). Any issues installing VSCodium using your package manager should be directed to that repository's issue tracker.
|
You can always install using the downloads (deb, rpm, tar) on the [releases page](https://github.com/VSCodium/vscodium/releases), but you can also install using your favorite package manager and get automatic updates. [@paulcarroty](https://github.com/paulcarroty) has set up a repository with instructions [here](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo). Any issues installing VSCodium using your package manager should be directed to that repository's issue tracker.
|
||||||
|
|
||||||
@@ -51,51 +66,16 @@ Microsoft's build process does download additional files. This was brought up in
|
|||||||
- electron
|
- electron
|
||||||
- ffmpeg
|
- ffmpeg
|
||||||
|
|
||||||
## <a id="disable-telemetry"></a>Getting all the Telemetry Out
|
## <a id="more-info"></a>More Info
|
||||||
Even though we do not pass the telemetry build flags (and go out of our way to cripple the baked-in telemetry), Microsoft will still track usage by default. After installing VSCodium, you must manually disable telemetry in your settings file to stop it from sending tracking data to Microsoft.
|
For more information on getting all the telemetry disabled and tips for migrating from Visual Studio Code to VSCodium, have a look at this [Docs](https://github.com/VSCodium/vscodium/blob/master/DOCS.md) page.
|
||||||
|
|
||||||
The instructions [here](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting) and [here](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-crash-reporting) help with disabling telemetry.
|
|
||||||
|
|
||||||
It is also highly recommended that you review all the settings that "use online services" by following [these instructions](https://code.visualstudio.com/docs/supporting/faq#_managing-online-services). The `@tag:usesOnlineServices` filter on the settings page will show that by default:
|
|
||||||
- Extensions auto check for updates and auto install updates
|
|
||||||
- Searches within the app are sent to an online service for "natural language processing"
|
|
||||||
- Updates to the app are fetched in the background
|
|
||||||
|
|
||||||
These can all be disabled.
|
|
||||||
|
|
||||||
__Please note that some extensions send telemetry data to Microsoft as well. We have no control over this and can only recommend removing the extension.__
|
|
||||||
|
|
||||||
_(For example the C# extension `ms-vscode.csharp` sends tracking data to Microsoft.)_
|
|
||||||
|
|
||||||
## <a id="supported-os"></a>Supported OS
|
## <a id="supported-os"></a>Supported OS
|
||||||
- [x] OSX x64 (zipped app file)
|
- [x] OSX x64 (zipped app file)
|
||||||
- [x] Linux x64 (`.deb`, `.rpm`, and `.tar.gz` files)
|
- [x] Linux x64 (`.deb`, `.rpm`, and `.tar.gz` files)
|
||||||
- [x] Linux x86 (`.deb`, `.rpm`, and `.tar.gz` files)
|
- [x] Linux x86 (`.deb`, `.rpm`, and `.tar.gz` files)
|
||||||
- [ ] Windows
|
- [X] Windows
|
||||||
- The plan is to build the Windows executable with [AppVeyor](https://appveyor.com). PRs are welcome :blue_heart:
|
|
||||||
|
|
||||||
The ARM architecture is not currently supported but is actively being worked on.
|
The ARM architecture is not currently supported but is actively being worked on.
|
||||||
|
|
||||||
## <a id="extensions-marketplace"></a>Extensions + Marketplace
|
|
||||||
Until something more open comes around, we use the Microsoft Marketplace/Extensions in the `product.json` file. Those links are licensed under MIT as per [the comments on this issue.](https://github.com/Microsoft/vscode/issues/31168#issuecomment-317319063)
|
|
||||||
|
|
||||||
## <a id="migrating"></a>Migrating from Visual Studio Code to VSCodium
|
|
||||||
VSCodium (and a freshly cloned copy of vscode built from source) stores its extension files in `~/.vscode-oss`. So if you currently have Visual Studio Code installed, your extensions won't automatically populate. You can reinstall your extensions from the Marketplace in VSCodium, or copy the `extensions` from `~/.vscode/extensions` to `~/.vscode-oss/extensions`.
|
|
||||||
|
|
||||||
Visual Studio Code stores its `keybindings.json` and `settings.json` file in the these locations:
|
|
||||||
- __Windows__: `%APPDATA%\Code\User`
|
|
||||||
- __macOS__: `$HOME/Library/Application Support/Code/User`
|
|
||||||
- __Linux__: `$HOME/.config/Code/User`
|
|
||||||
|
|
||||||
You can copy these files to the VSCodium user settings folder:
|
|
||||||
- __Windows__: `%APPDATA%\VSCodium\User`
|
|
||||||
- __macOS__: `$HOME/Library/Application Support/VSCodium/User`
|
|
||||||
- __Linux__: `$HOME/.config/VSCodium/User`
|
|
||||||
|
|
||||||
To copy your settings manually:
|
|
||||||
- In Visual Studio Code, go to Settings (Command+, if on a Mac)
|
|
||||||
- Click the three dots `...` and choose 'Open settings.json'
|
|
||||||
- Copy the contents of settings.json into the same place in VSCodium
|
|
||||||
|
|
||||||
## <a id="license"></a>License
|
## <a id="license"></a>License
|
||||||
MIT
|
MIT
|
||||||
|
|||||||
59
azure-pipelines.yml
Normal file
59
azure-pipelines.yml
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
pool:
|
||||||
|
vmImage: 'vs2017-win2016'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- script: |
|
||||||
|
choco install jq
|
||||||
|
displayName: 'install jq from choco'
|
||||||
|
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
|
||||||
|
displayName: 'Install Yarn'
|
||||||
|
- task: UsePythonVersion@0
|
||||||
|
displayName: 'Use Python 2.x'
|
||||||
|
inputs:
|
||||||
|
versionSpec: 2.x
|
||||||
|
- task: ShellScript@2
|
||||||
|
displayName: 'get VSCode sources'
|
||||||
|
inputs:
|
||||||
|
scriptPath: get_repo.sh
|
||||||
|
- powershell: |
|
||||||
|
$LATEST_MS_TAG="$(git -C vscode describe --tags)"
|
||||||
|
Write-Host "##vso[task.setvariable variable=LATEST_MS_TAG]$LATEST_MS_TAG"
|
||||||
|
displayName: 'set env LATEST_MS_TAG'
|
||||||
|
- task: PowerShell@2
|
||||||
|
inputs:
|
||||||
|
filePath: 'check_tags.ps1'
|
||||||
|
env:
|
||||||
|
MAPPED_GITHUB_TOKEN: $(GITHUB_TOKEN)
|
||||||
|
- script: |
|
||||||
|
git -C vscode status
|
||||||
|
displayName: 'vscode status'
|
||||||
|
- powershell: |
|
||||||
|
bash ./build.sh
|
||||||
|
displayName: 'go build it!'
|
||||||
|
- bash: |
|
||||||
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then mv vscode\\.build\\win32-x64\\system-setup\\VSCodeSetup.exe VSCodiumSetup-x64-${LATEST_MS_TAG}.exe; fi
|
||||||
|
displayName: 'move the system setup'
|
||||||
|
- bash: |
|
||||||
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then mv vscode\\.build\\win32-x64\\user-setup\\VSCodeSetup.exe VSCodiumUserSetup-x64-${LATEST_MS_TAG}.exe; fi
|
||||||
|
displayName: 'move the user setup'
|
||||||
|
- bash: |
|
||||||
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then mv vscode\\.build\\win32-x64\\archive\\VSCode-win32-x64.zip VSCodium-win32-x64-${LATEST_MS_TAG}.zip; fi
|
||||||
|
displayName: 'move the zip folder'
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
displayName: 'Publish artifacts: system-setup'
|
||||||
|
condition: eq(variables['SHOULD_BUILD'], 'yes')
|
||||||
|
inputs:
|
||||||
|
PathtoPublish: 'VSCodiumSetup-x64-$(LATEST_MS_TAG).exe'
|
||||||
|
ArtifactName: 'system_setup'
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
displayName: 'Publish artifacts: user-setup'
|
||||||
|
condition: eq(variables['SHOULD_BUILD'], 'yes')
|
||||||
|
inputs:
|
||||||
|
PathtoPublish: 'VSCodiumUserSetup-x64-$(LATEST_MS_TAG).exe'
|
||||||
|
ArtifactName: 'user_setup'
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
displayName: 'Publish artifacts: archive'
|
||||||
|
condition: eq(variables['SHOULD_BUILD'], 'yes')
|
||||||
|
inputs:
|
||||||
|
PathtoPublish: 'VSCodium-win32-x64-$(LATEST_MS_TAG).zip'
|
||||||
|
ArtifactName: 'archive'
|
||||||
23
build.sh
23
build.sh
@@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
||||||
cp -rp src/* vscode/
|
cp -rp src/* vscode/
|
||||||
cd vscode
|
cd vscode
|
||||||
@@ -7,6 +6,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|||||||
if [[ "$BUILDARCH" == "ia32" ]]; then
|
if [[ "$BUILDARCH" == "ia32" ]]; then
|
||||||
export npm_config_arch=ia32
|
export npm_config_arch=ia32
|
||||||
fi
|
fi
|
||||||
|
../update_settings.sh
|
||||||
|
|
||||||
yarn
|
yarn
|
||||||
mv product.json product.json.bak
|
mv product.json product.json.bak
|
||||||
@@ -16,30 +16,37 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|||||||
|
|
||||||
export NODE_ENV=production
|
export NODE_ENV=production
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
# microsoft adds their apt repo to sources
|
# microsoft adds their apt repo to sources
|
||||||
# unless the app name is code-oss
|
# unless the app name is code-oss
|
||||||
# as we are renaming the application to vscodium
|
# as we are renaming the application to vscodium
|
||||||
# we need to edit a line in the post install template
|
# we need to edit a line in the post install template
|
||||||
sed -i "s/code-oss/vscodium/" resources/linux/debian/postinst.template
|
sed -i "s/code-oss/vscodium/" resources/linux/debian/postinst.template
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
npm run gulp vscode-darwin-min
|
npm run gulp vscode-darwin-min
|
||||||
elif [[ "$BUILDARCH" == "ia32" ]]; then
|
elif [[ "$BUILDARCH" == "ia32" ]]; then
|
||||||
npm run gulp vscode-linux-ia32-min
|
npm run gulp vscode-linux-ia32-min
|
||||||
npm run gulp vscode-linux-ia32-build-deb
|
npm run gulp vscode-linux-ia32-build-deb
|
||||||
npm run gulp vscode-linux-ia32-build-rpm
|
npm run gulp vscode-linux-ia32-build-rpm
|
||||||
unset npm_config_arch
|
unset npm_config_arch
|
||||||
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
||||||
npm run gulp vscode-linux-arm64-min
|
npm run gulp vscode-linux-arm64-min
|
||||||
npm run gulp vscode-linux-arm64-build-deb
|
npm run gulp vscode-linux-arm64-build-deb
|
||||||
# npm run gulp vscode-linux-arm64-build-rpm
|
# npm run gulp vscode-linux-arm64-build-rpm
|
||||||
|
elif [[ "$CI_WINDOWS" == "True" ]]; then
|
||||||
|
npx gulp vscode-win32-x64-min
|
||||||
|
npx gulp vscode-win32-x64-copy-inno-updater
|
||||||
|
npx gulp vscode-win32-x64-inno-updater
|
||||||
|
npx gulp vscode-win32-x64-system-setup
|
||||||
|
npx gulp vscode-win32-x64-user-setup
|
||||||
|
npx gulp vscode-win32-x64-archive
|
||||||
else
|
else
|
||||||
npm run gulp vscode-linux-x64-min
|
npm run gulp vscode-linux-x64-min
|
||||||
npm run gulp vscode-linux-x64-build-deb
|
npm run gulp vscode-linux-x64-build-deb
|
||||||
npm run gulp vscode-linux-x64-build-rpm
|
npm run gulp vscode-linux-x64-build-rpm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
fi
|
fi
|
||||||
|
|||||||
34
check_tags.ps1
Normal file
34
check_tags.ps1
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
echo "tag: $env:LATEST_MS_TAG"
|
||||||
|
$GITHUB_RESPONSE = curl.exe -s -H "Authorization: token $env:MAPPED_GITHUB_TOKEN" "https://api.github.com/repos/vscodium/vscodium/releases/tags/$env:LATEST_MS_TAG"
|
||||||
|
echo "Github response: ${GITHUB_RESPONSE}"
|
||||||
|
$VSCODIUM_ASSETS= $GITHUB_RESPONSE | jq '.assets'
|
||||||
|
echo "VSCodium assets: ${VSCODIUM_ASSETS}"
|
||||||
|
|
||||||
|
# if we just don't have the github token, get out fast
|
||||||
|
if (!$env:MAPPED_GITHUB_TOKEN -or $env:MAPPED_GITHUB_TOKEN -like "*GITHUB_TOKEN*") {
|
||||||
|
echo "This build does not have the GH token"
|
||||||
|
echo $env:MAPPED_GITHUB_TOKEN
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$VSCODIUM_ASSETS) {
|
||||||
|
echo "Release assets do not exist at all, continuing build"
|
||||||
|
$SHOULD_BUILD = 'yes'
|
||||||
|
}
|
||||||
|
|
||||||
|
$WindowsAssets = ($VSCODIUM_ASSETS | ConvertFrom-Json) | Where-Object { $_.name.Contains('exe') }
|
||||||
|
$SYSTEM_SETUP = $WindowsAssets | Where-Object { $_.name.Contains('Setup') }
|
||||||
|
$USER_SETUP = $WindowsAssets | Where-Object { $_.name.Contains('User') }
|
||||||
|
if (!$SYSTEM_SETUP) {
|
||||||
|
echo "Building on Windows because we have no system-setup.exe";
|
||||||
|
$SHOULD_BUILD = 'yes'
|
||||||
|
}
|
||||||
|
elseif (!$USER_SETUP) {
|
||||||
|
echo "Building on Windows because we have no user-setup.exe";
|
||||||
|
$SHOULD_BUILD = 'yes'
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
echo "Already have all the Windows builds"
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "##vso[task.setvariable variable=SHOULD_BUILD]$SHOULD_BUILD"
|
||||||
@@ -3,16 +3,16 @@
|
|||||||
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
cd VSCode-darwin
|
cd VSCode-darwin
|
||||||
zip -r ../VSCode-darwin-${LATEST_MS_TAG}.zip ./*
|
zip -r -X -y ../VSCodium-darwin-${LATEST_MS_TAG}.zip ./*
|
||||||
elif [[ "$BUILDARCH" == "ia32" ]]; then
|
elif [[ "$BUILDARCH" == "ia32" ]]; then
|
||||||
cd VSCode-linux-ia32
|
cd VSCode-linux-ia32
|
||||||
tar czf ../VSCode-linux-ia32-${LATEST_MS_TAG}.tar.gz .
|
tar czf ../VSCodium-linux-ia32-${LATEST_MS_TAG}.tar.gz .
|
||||||
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
||||||
cd VSCode-linux-arm64
|
cd VSCode-linux-arm64
|
||||||
tar czf ../VSCode-linux-arm64-${LATEST_MS_TAG}.tar.gz .
|
tar czf ../VSCodium-linux-arm64-${LATEST_MS_TAG}.tar.gz .
|
||||||
else
|
else
|
||||||
cd VSCode-linux-x64
|
cd VSCode-linux-x64
|
||||||
tar czf ../VSCode-linux-x64-${LATEST_MS_TAG}.tar.gz .
|
tar czf ../VSCodium-linux-x64-${LATEST_MS_TAG}.tar.gz .
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
brew update
|
brew update
|
||||||
brew install yarn --without-node
|
|
||||||
brew install jq zip
|
brew install jq zip
|
||||||
else
|
else
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|||||||
7
trigger-azure.sh
Executable file
7
trigger-azure.sh
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
if [ "$AZURE_TOKEN" != "" ]; then
|
||||||
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
||||||
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
|
curl -X POST -H "Content-Type: application/json" -H "Authorization: Basic $AZURE_TOKEN" -d '{"definition":{"id":1}}' https://dev.azure.com/VSCodium/vscodium/_apis/build/builds?api-version=5.0-preview.5
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
9
update_settings.sh
Executable file
9
update_settings.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
REPLACEMENT="s/'default': true/'default': false/"
|
||||||
|
|
||||||
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
|
sed -i '' -E "$REPLACEMENT" src/vs/platform/telemetry/common/telemetryService.ts
|
||||||
|
sed -i '' -E "$REPLACEMENT" src/vs/workbench/services/crashReporter/electron-browser/crashReporterService.ts
|
||||||
|
else
|
||||||
|
sed -i -E "$REPLACEMENT" src/vs/platform/telemetry/common/telemetryService.ts
|
||||||
|
sed -i -E "$REPLACEMENT" src/vs/workbench/services/crashReporter/electron-browser/crashReporterService.ts
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user