Skip to content

Commit b88145c

Browse files
initial tests
1 parent f15196d commit b88145c

File tree

1,224 files changed

+141257
-0
lines changed

Some content is hidden

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

1,224 files changed

+141257
-0
lines changed

.github/workflows/android-kotlin.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: kotlin
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd kotlin/sample
11+
kotlinc App.kt -include-runtime -d App.jar
12+
java -jar App.jar

.github/workflows/ant.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: ant
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
ant -version
11+
ant -buildfile ant/build.xml

.github/workflows/chrom-driver.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: chrome-driver
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd chrome-driver
11+
pip3 install selenium
12+
python python-test.py
13+
- run: |
14+
cd chrome-driver/java
15+
mvn install

.github/workflows/cmake.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
name: cmake
3+
on:
4+
workflow_dispatch:
5+
jobs:
6+
build:
7+
runs-on: ASrunner
8+
steps:
9+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
10+
- run: |
11+
which cmake
12+
cmake --version
13+
- run: |
14+
cd cmake/testfiles
15+
cmake -DCMAKE_SHELL=false -DTEST_ONE=one -DTEST_TWO=/one/two/three -DTEST_WIN_VARIABLE=test -DTEST_VARIABLE=test
16+
- run: |
17+
cd cmake/testfiles
18+
cmake -DCMAKE_SHELL=true -DTEST_ONE=one -DTEST_TWO=/one/two/three -DTEST_VARIABLE=$USER -DTEST_WIN_VARIABLE=%OS%

.github/workflows/docker.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: docker
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
docker pull debian
11+
docker run debian
12+
- run: |
13+
git clone https://github.com/dockersamples/node-bulletin-board
14+
cd node-bulletin-board/bulletin-board-app
15+
docker build --tag bulletinboard:1.0 .
16+
docker run --publish 8000:8080 --detach --name bb bulletinboard:1.0
17+
docker rm --force bb
18+
- run: |
19+
git clone https://github.com/dockersamples/example-voting-app
20+
cd example-voting-app
21+
docker-compose up --build &
22+
sleep 200
23+
docker-compose down

.github/workflows/go.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: go
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd go/go-web-app
11+
go get -d
12+
shell: pwsh
13+
- run: |
14+
cd go/go-web-app
15+
go build
16+
shell: pwsh

.github/workflows/node.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: node
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd node/node-typescript
11+
npm install
12+
- run: |
13+
cd node/node-typescript
14+
npm test -- --reporter mocha-junit-reporter

.github/workflows/openssl-steps.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: openssl
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
echo some_value > input.txt
11+
- run: |
12+
openssl dgst -sha256 -hex input.txt > sha256.txt
13+
- run: |
14+
cat sha256.txt

.github/workflows/powershell.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: powershell
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: Write-Host hello
10+
shell: pwsh
11+
- run: ./powershell/scripts/hello.ps1
12+
shell: pwsh

.github/workflows/python.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: python
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
$version = $(python --version)
11+
Write-Host "Python version in PATH: $version"
12+
Write-Host "PATH: $env:PATH"
13+
shell: pwsh
14+
15+
- run: |
16+
$version = $(pip --version)[0]
17+
Write-Host "Pip version in PATH: $version"
18+
Write-Host "PATH: $env:PATH"
19+
shell: pwsh
20+
21+
- run: python -m pip install --upgrade pip
22+
shell: pwsh
23+
24+
- run: pip install requests
25+
shell: pwsh

.github/workflows/ruby.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: ruby
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
echo $AGENT_TOOLSDIRECTORY/Ruby/2.7.4/x64/bin >> $GITHUB_PATH
11+
- run: |
12+
cd ruby
13+
gem install bundler --force
14+
bundle install --retry=3 --jobs=4
15+
ruby ruby_version.rb
16+
- run: |
17+
cd ruby/cucumber-hello
18+
bundle install
19+
bundle exec cucumber
20+
- run: |
21+
ruby -ropenssl -e "puts 'Ruby SSL OK'"
22+
ruby -rreadline -e "puts 'Ruby readline OK'"

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: rust
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd rust/src
11+
rustc hello.rs
12+
./hello
13+
- run: |
14+
rustup install nightly
15+
rustup show
16+
- run: |
17+
rust/scripts/cargo.ps1
18+
shell: pwsh
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: wdk
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd windows-driver-kit/winkerneltest
11+
dotnet restore winkerneltest.sln
12+
msbuild winkerneltest.sln /p:platform="x64" /p:configuration="release"

.github/workflows/xamarin-android.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: go
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
build:
6+
runs-on: ASrunner
7+
steps:
8+
- run: git clone https://github.com/bbq-beets/asviridenko-test-repo.git .
9+
- run: |
10+
cd xamarin-android/vs2019/XamarinAndroidVS2019
11+
nuget restore XamarinAndroidVS2019.sln
12+
msbuild XamarinAndroidVS2019.csproj /p:AndroidNdkDirectory="C:\Android\android-sdk\ndk-bundle" /p:configuration="Release" /t:PackageForAndroid

Java/AndroidEmptySDK28/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches/build_file_checksums.ser
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
.DS_Store
9+
/build
10+
/captures
11+
.externalNativeBuild

Java/AndroidEmptySDK28/.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/AndroidEmptySDK28/.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/AndroidEmptySDK28/.idea/misc.xml

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/AndroidEmptySDK28/.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/AndroidEmptySDK28/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/AndroidEmptySDK28/app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)