2024-05-08 13:24:18 +02:00
|
|
|
|
|
|
|
name: OINT | Тестирование GoogleSheets
|
|
|
|
|
|
|
|
# Controls when the workflow will run
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
Decode:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Расшифровать тестовые данные
|
|
|
|
run: gpg --quiet --batch --yes --decrypt --passphrase="$ENC_JSON" --output ./data.json ./data.json.gpg
|
|
|
|
env:
|
|
|
|
ENC_JSON: ${{ secrets.ENC_JSON }}
|
|
|
|
- name: Записать тестовые данные в кэш
|
|
|
|
uses: actions/cache/save@v3
|
|
|
|
with:
|
|
|
|
key: test-data
|
|
|
|
path: ./data.json
|
|
|
|
|
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: otymko/setup-onescript@v1.4
|
|
|
|
with:
|
|
|
|
version: 1.9.0
|
|
|
|
|
|
|
|
- name: Установить asserts и 1testrunner
|
|
|
|
run: |
|
|
|
|
opm install asserts
|
|
|
|
opm install 1testrunner
|
|
|
|
|
|
|
|
- name: Установить OInt
|
|
|
|
run: |
|
|
|
|
cd ./OInt
|
|
|
|
opm build
|
|
|
|
opm install *.ospx
|
|
|
|
|
|
|
|
- name: Записать артефакт
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: oint
|
|
|
|
path: ./OInt/*.ospx
|
|
|
|
|
|
|
|
|
|
|
|
Testing-GoogleSheets:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: Testing-GoogleWorkspace
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: otymko/setup-onescript@v1.4
|
|
|
|
with:
|
|
|
|
version: 1.9.0
|
|
|
|
|
|
|
|
- name: Получить тестовые данные из кэша
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
with:
|
|
|
|
key: test-data_google
|
|
|
|
path: ./data.json
|
|
|
|
|
|
|
|
- name: Установить asserts и 1testrunner
|
|
|
|
run: |
|
|
|
|
opm install asserts
|
|
|
|
opm install 1testrunner
|
|
|
|
|
|
|
|
- name: Установить OInt
|
|
|
|
run: |
|
|
|
|
cd ./OInt
|
|
|
|
opm build
|
|
|
|
opm install *.ospx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Создать таблицу
|
|
|
|
if: ${{ cancelled() }} == false
|
|
|
|
run: oscript /home/runner/.local/share/ovm/current/lib/1testrunner/src/main.os -run ./OInt/tests/Modules/internal/OPI_Тесты.os "ГТ_СоздатьТаблицу"
|
|
|
|
|
|
|
|
- name: Получить таблицу
|
|
|
|
if: ${{ cancelled() }} == false
|
|
|
|
run: oscript /home/runner/.local/share/ovm/current/lib/1testrunner/src/main.os -run ./OInt/tests/Modules/internal/OPI_Тесты.os "ГТ_ПолучитьТаблицу"
|
|
|
|
|
|
|
|
- name: Заполнить/Очистить ячейки
|
|
|
|
if: ${{ cancelled() }} == false
|
|
|
|
run: oscript /home/runner/.local/share/ovm/current/lib/1testrunner/src/main.os -run ./OInt/tests/Modules/internal/OPI_Тесты.os "ГТ_ЗаполнитьОчиститьЯчейки"
|
|
|
|
|
|
|
|
|
|
|
|
Clear-Cache:
|
|
|
|
runs-on: ubuntu-latest
|
2024-05-08 13:28:53 +02:00
|
|
|
needs: [Testing-GoogleSheetsTesting-GoogleSheets, Encode]
|
2024-05-08 13:24:18 +02:00
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
- name: Очистка основного кэша
|
|
|
|
run: |
|
|
|
|
curl -L \
|
|
|
|
-X DELETE \
|
|
|
|
-H "Accept: application/vnd.github+json" \
|
|
|
|
-H "Authorization: Bearer ${{ secrets.TOKEN }}" \
|
|
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
|
|
"https://api.github.com/repos/Bayselonarrend/OpenIntegrations/actions/caches?key=test-data"
|
|
|
|
|
|
|
|
- name: Очистка кэша Google
|
|
|
|
run: |
|
|
|
|
curl -L \
|
|
|
|
-X DELETE \
|
|
|
|
-H "Accept: application/vnd.github+json" \
|
|
|
|
-H "Authorization: Bearer ${{ secrets.TOKEN }}" \
|
|
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
|
|
"https://api.github.com/repos/Bayselonarrend/OpenIntegrations/actions/caches?key=test-data_google"
|
|
|
|
|
|
|
|
- name: Очистка кэша Twitter
|
|
|
|
run: |
|
|
|
|
curl -L \
|
|
|
|
-X DELETE \
|
|
|
|
-H "Accept: application/vnd.github+json" \
|
|
|
|
-H "Authorization: Bearer ${{ secrets.TOKEN }}" \
|
|
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
|
|
"https://api.github.com/repos/Bayselonarrend/OpenIntegrations/actions/caches?key=test-data_new"
|