From c0f0014c68e64fdc4a77ede73772b5b378c8e935 Mon Sep 17 00:00:00 2001 From: Evgeniy Zayats Date: Sun, 12 May 2024 15:12:05 -0400 Subject: [PATCH] action: enable action on ARM Signed-off-by: Evgeniy Zayats --- .github/workflows/tests.yml | 6 +++++- action.yml | 7 +++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c535526..7a7634c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,11 @@ permissions: write-all jobs: run_system_tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os.runner }} + strategy: + fail-fast: false + matrix: + os: [{runner: 'ubuntu-latest'}, {runner: 'macos-14'}] timeout-minutes: 500 steps: - name: Checkout gh-push-allure-report-to-neofs diff --git a/action.yml b/action.yml index 0f3c4e6..5e9e295 100644 --- a/action.yml +++ b/action.yml @@ -136,11 +136,10 @@ runs: - name: Add github run url to Allure report shell: bash run: | - touch ${{ inputs.ALLURE_RESULTS_DIR }}/environment.properties - sed -i '1s|^|GITHUB_WORKFLOW_URL=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n|' ${{ inputs.ALLURE_RESULTS_DIR }}/environment.properties + echo "GITHUB_WORKFLOW_URL=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" > ${{ inputs.ALLURE_RESULTS_DIR }}/environment.properties - name: Generate Allure report - uses: simple-elf/allure-report-action@v1.6 + uses: nspcc-dev/allure-report-action@v1.0 if: always() id: allure-report with: @@ -193,7 +192,7 @@ runs: - name: Run gh-push-to-neofs id: gh_push_to_neofs - uses: nspcc-dev/gh-push-to-neofs@v0.1.2 + uses: nspcc-dev/gh-push-to-neofs@v0.3.0 with: NEOFS_WALLET: ${{ inputs.NEOFS_WALLET }} NEOFS_WALLET_PASSWORD: ${{ inputs.NEOFS_WALLET_PASSWORD }}