Skip to content

Commit

Permalink
Merge pull request #6 from nspcc-dev/ezayats/arm
Browse files Browse the repository at this point in the history
action: enable action on ARM
  • Loading branch information
roman-khimov committed May 20, 2024
2 parents 1b74ca7 + c0f0014 commit ea45295
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 3 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit ea45295

Please sign in to comment.