Skip to content

Commit

Permalink
Continue on error and test against ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
driv3r committed Sep 11, 2024
1 parent dd26480 commit 10e6eb0
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ghostferry MySQL 8.0 tests
name: Ghostferry Tests

on:
push:
Expand All @@ -11,14 +11,18 @@ jobs:
strategy:
matrix:
mysql: ["5.7", "8.0"]
runs-on: ubuntu-latest
runner: [ubuntu-latest, shopify-ubuntu-arm64]

runs-on: ${{ matrix.runner }}
continue-on-error: true
timeout-minutes: 15

env:
CI: "true"
MYSQL_VERSION: ${{ matrix.mysql }}

steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: 1.16
Expand All @@ -33,14 +37,18 @@ jobs:
strategy:
matrix:
mysql: ["5.7", "8.0"]
runs-on: ubuntu-latest
runner: [ubuntu-latest, shopify-ubuntu-arm64]

runs-on: ${{ matrix.runner }}
timeout-minutes: 15
continue-on-error: true

env:
CI: "true"
MYSQL_VERSION: ${{ matrix.mysql }}

steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: 1.16
Expand All @@ -55,18 +63,22 @@ jobs:
strategy:
matrix:
mysql: ["5.7", "8.0"]
runs-on: ubuntu-latest
runner: [ubuntu-latest, shopify-ubuntu-arm64]

runs-on: ${{ matrix.runner }}
timeout-minutes: 15
continue-on-error: true

env:
CI: "true"
BUNDLE_WITHOUT: "development"
MYSQL_VERSION: ${{ matrix.mysql }}

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.16

- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
Expand All @@ -85,7 +97,6 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: 1.16
Expand Down

0 comments on commit 10e6eb0

Please sign in to comment.