Merge pull request #214519 from r-ryantm/auto-update/vscodium
vscodium: 1.74.3.23010 -> 1.75.0.23033
This commit is contained in:
commit
eb5550809f
2 changed files with 9 additions and 16 deletions
|
@ -33,13 +33,6 @@ let
|
||||||
};
|
};
|
||||||
enableOCR = true;
|
enableOCR = true;
|
||||||
|
|
||||||
# testScriptWithTypes:55: error: Item "function" of
|
|
||||||
# "Union[Callable[[Callable[..., Any]], ContextManager[Any]], ContextManager[Any]]"
|
|
||||||
# has no attribute "__enter__"
|
|
||||||
# with codium_running:
|
|
||||||
# ^
|
|
||||||
skipTypeCheck = true;
|
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
@polling_condition
|
@polling_condition
|
||||||
def codium_running():
|
def codium_running():
|
||||||
|
@ -50,10 +43,10 @@ let
|
||||||
|
|
||||||
machine.wait_for_unit('graphical.target')
|
machine.wait_for_unit('graphical.target')
|
||||||
|
|
||||||
codium_running.wait()
|
codium_running.wait() # type: ignore[union-attr]
|
||||||
with codium_running:
|
with codium_running: # type: ignore[union-attr]
|
||||||
# Wait until vscodium is visible. "File" is in the menu bar.
|
# Wait until vscodium is visible. "File" is in the menu bar.
|
||||||
machine.wait_for_text('Get Started')
|
machine.wait_for_text('Welcome')
|
||||||
machine.screenshot('start_screen')
|
machine.screenshot('start_screen')
|
||||||
|
|
||||||
test_string = 'testfile'
|
test_string = 'testfile'
|
||||||
|
|
|
@ -15,11 +15,11 @@ let
|
||||||
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
||||||
|
|
||||||
sha256 = {
|
sha256 = {
|
||||||
x86_64-linux = "0mm6xa0kizgg2f6cql6jk8h83pn89h6q7rrs1kypvj3j0x6ysqsg";
|
x86_64-linux = "1qayw19mb7f0gcgcvl57gpacrqsyx2jvc6s63vzbx8jmf5qnk71a";
|
||||||
x86_64-darwin = "1g9syvinj2mx292wrnrdn2znqhg17mrjqij0z1ilag5bi4xmzhcj";
|
x86_64-darwin = "02z9026kp66lx6pll46xx790jj7c7wh2ca7xim373x90k8hm4kwz";
|
||||||
aarch64-linux = "0xbq6fla0lxan08jgmsva91cbcv8rhzd7mqixrm1lsqh4h0wpssz";
|
aarch64-linux = "1izqhzvv46p05k1z2yg380ddwmar4w2pbrd0dyvkdysvp166y931";
|
||||||
aarch64-darwin = "1b4a56j256rib1997g9wwiak206axkppl124qg021vyab42x8rim";
|
aarch64-darwin = "1zcr653ssck4nc3vf04l6bilnjdsiqscw62g1wzbyk6s50133cx8";
|
||||||
armv7l-linux = "0gb96hi854kyh8694j9mbgl78f4y68czkwmjxhzb054l5b4adjla";
|
armv7l-linux = "0n914rcfn2m9zsbnkd82cmw88qbpssv6jk3g8ig3wqlircbgrw0h";
|
||||||
}.${system} or throwSystem;
|
}.${system} or throwSystem;
|
||||||
|
|
||||||
sourceRoot = if stdenv.isDarwin then "" else ".";
|
sourceRoot = if stdenv.isDarwin then "" else ".";
|
||||||
|
@ -29,7 +29,7 @@ in
|
||||||
|
|
||||||
# Please backport all compatible updates to the stable release.
|
# Please backport all compatible updates to the stable release.
|
||||||
# This is important for the extension ecosystem.
|
# This is important for the extension ecosystem.
|
||||||
version = "1.74.3.23010";
|
version = "1.75.0.23033";
|
||||||
pname = "vscodium";
|
pname = "vscodium";
|
||||||
|
|
||||||
executableName = "codium";
|
executableName = "codium";
|
||||||
|
|
Loading…
Reference in a new issue