Bump golang.org/x/sys from 0.0.0-20210426230700-d19ff857e887 to 0.1.0 in the go_modules group #374
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"] | |
runs-on: ubuntu-latest | |
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"] | |
runs-on: ubuntu-latest | |
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"] | |
runs-on: ubuntu-latest | |
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* |