This commit is contained in:
Osman Faruk Bayram 2025-09-15 16:52:42 +03:00
parent 7020149e6d
commit 8d5c8245c2

View file

@ -10,7 +10,16 @@ concurrency:
jobs: jobs:
build: build:
runs-on: ubuntu-24.04 strategy:
fail-fast: false
matrix:
system:
- x86_64-linux
- aarch64-linux
- x86_64-darwin
runs-on: ${{ matrix.system == 'x86_64-linux' && 'ubuntu-24.04'
|| matrix.system == 'aarch64-linux' && 'ubuntu-24.04-arm'
|| matrix.system == 'x86_64-darwin' && 'macos-latest' }}
steps: steps:
- name: Checkout the repository - name: Checkout the repository
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -23,7 +32,7 @@ jobs:
with: with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
hostname: github-actions hostname: github-actions-${{ matrix.system }}
tags: tag:ci tags: tag:ci
- name: Check if Attic endpoint is reachable - name: Check if Attic endpoint is reachable