Skip to content

Commit d08705b

Browse files
committed
minor improvements
1 parent e3e1119 commit d08705b

18 files changed

+62
-27
lines changed

.github/workflows/7zip.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 7zip
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: |
9+
New-Item -Name "test.txt"
10+
7z a test.7z test.txt
11+
Remove-Item "test.txt"
12+
7z e test.7z
13+
shell: pwsh
14+
- run: |
15+
New-Item -Name "test2.txt"
16+
zstd --rm test2.txt
17+
zstd -d test2.txt.zst
18+
shell: pwsh

.github/workflows/android-kotlin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
cd kotlin/sample
1111
kotlinc App.kt -include-runtime -d App.jar

.github/workflows/ant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
ant -version
1111
ant -buildfile ant/build.xml

.github/workflows/chrom-driver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
cd chrome-driver
1111
pip3 install selenium

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ASrunner
88
steps:
9-
- uses: actions/checkout@v2
9+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
1010
- run: |
1111
which cmake
1212
cmake --version

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
9+
- run: docker login
910
- run: |
1011
docker pull mcr.microsoft.com/windows/servercore/insider:10.0.20348.1
1112
docker run mcr.microsoft.com/windows/servercore/insider:10.0.20348.1

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
cd go/go-web-app
1111
go get -d

.github/workflows/node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
cd node/node-typescript
1111
npm install

.github/workflows/openssl-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
echo some_value > input.txt
1111
- run: |

.github/workflows/powershell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: Write-Host hello
1010
shell: pwsh
1111
- run: ./powershell/scripts/hello.ps1

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
$version = $(python --version)
1111
Write-Host "Python version in PATH: $version"

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
echo $AGENT_TOOLSDIRECTORY/Ruby/2.7.4/x64/bin >> $GITHUB_PATH
1111
- run: |

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ASrunner
77
steps:
8-
- uses: actions/checkout@v2
8+
- run: git clone https://github.com/maxim-lobanov/runner-test-repo-win.git .
99
- run: |
1010
$cargoTarget = "$env:USERPROFILE\.cargo"
1111
if (-not (Test-Path $cargoTarget))

.github/workflows/xamarin-android.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
// Runtime Version:4.0.30319.42000
5+
//
6+
// Changes to this file may cause incorrect behavior and will be lost if
7+
// the code is regenerated.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
using System;
12+
using System.Reflection;
13+
14+
[assembly: System.Reflection.AssemblyCompanyAttribute("AviaExplorer")]
15+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18+
[assembly: System.Reflection.AssemblyProductAttribute("AviaExplorer")]
19+
[assembly: System.Reflection.AssemblyTitleAttribute("AviaExplorer")]
20+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21+
22+
// Generated by the MSBuild WriteCodeFragment class.
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
96d70ca96ade3eb6d66a8cc90e87f9be8aaaf311
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
is_global = true
2+
build_property.RootNamespace = AviaExplorer
3+
build_property.ProjectDir = /Users/maxim-lobanov/Documents/Repos/asviridenko-test-repo/xamarin-android/android-ndk/AviaExplorer/AviaExplorer/

0 commit comments

Comments
 (0)