Update outdated GH Actions #370
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ghostferry Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
gh-285: | |
strategy: | |
matrix: | |
mysql: ["5.7", "8.0"] | |
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 | |
- name: Starting up MySQL | |
run: .github/workflows/start-mysql.sh | |
- name: Running GH-285 test | |
run: ./examples/gh-285/bugreport.sh | |
go-test: | |
strategy: | |
matrix: | |
mysql: ["5.7", "8.0"] | |
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 | |
- name: Starting up MySQL | |
run: .github/workflows/start-mysql.sh | |
- name: Running Golang tests | |
run: make test-go | |
ruby-test: | |
strategy: | |
matrix: | |
mysql: ["5.7", "8.0"] | |
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 | |
bundler-cache: true | |
- name: Starting up MySQL | |
run: .github/workflows/start-mysql.sh | |
- name: Running Ruby tests | |
run: bundle exec ruby test/main.rb | |
build-debs: | |
strategy: | |
matrix: | |
runner: [ubuntu-latest, shopify-ubuntu-arm64] | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.16 | |
- name: Building Ghostferry | |
run: .github/workflows/build-deb.sh | |
- name: Upload debs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: debs-${{ github.sha }}-${{ matrix.runner }} | |
path: build/ghostferry* |