forked from vanessa-opensource/vanessa-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,11 @@ jobs: | |
if: github.repository == 'vanessa-opensource/vanessa-runner' | ||
runs-on: self-hosted | ||
# runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# os: [ubuntu-latest] | ||
oscript_version: ['1.4.0'] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# # os: [ubuntu-latest] | ||
# oscript_version: ['1.4.0'] | ||
|
||
steps: | ||
# Загрузка проекта | ||
|
@@ -33,16 +33,19 @@ jobs: | |
id: extract_branch | ||
|
||
# Установка OneScript конкретной версии | ||
- name: Установка OneScript | ||
uses: otymko/[email protected] | ||
with: | ||
version: ${{ matrix.oscript_version }} | ||
# - name: Установка OneScript | ||
# uses: otymko/[email protected] | ||
# with: | ||
# version: ${{ matrix.oscript_version }} | ||
|
||
# Установка зависимостей пакета | ||
- name: Установка зависимостей | ||
run: | | ||
opm install opm | ||
opm install --dev | ||
# run: | | ||
# opm install opm | ||
# opm install add | ||
# opm install --dev | ||
|
||
# Запуск тестов и сбор покрытия кода | ||
- name: Покрытие кода | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,28 +10,31 @@ jobs: | |
build: | ||
runs-on: [vanessa] | ||
# runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# os: [ubuntu-latest, windows-latest] | ||
oscript_version: ['1.4.0'] | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# # os: [ubuntu-latest, windows-latest] | ||
# oscript_version: ['1.4.0'] | ||
|
||
steps: | ||
# Загрузка проекта | ||
- name: Актуализация | ||
uses: actions/checkout@v2 | ||
|
||
# Установка OneScript конкретной версии | ||
- name: Установка OneScript | ||
uses: otymko/[email protected] | ||
with: | ||
version: ${{ matrix.oscript_version }} | ||
# - name: Установка OneScript | ||
# uses: otymko/[email protected] | ||
# with: | ||
# version: ${{ matrix.oscript_version }} | ||
|
||
# Установка зависимостей пакета | ||
- name: Установка зависимостей | ||
run: | | ||
opm install opm | ||
opm install --dev | ||
# run: | | ||
# opm install opm | ||
# opm install add | ||
# opm install --dev | ||
|
||
# Задача тестирования, в результате ожидается успешное выполнение | ||
- name: Тестирование | ||
|