Trim trailing 1 in SpaceGroup short names (#242) #263
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: Build database | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mariadb: | |
image: mariadb:10.8 | |
env: | |
MYSQL_USER: test | |
MYSQL_PASSWORD: test | |
MYSQL_DATABASE: ispyb_build | |
MYSQL_ROOT_PASSWORD: rootpassword | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: pandoc | |
version: 1.0 | |
- uses: shogo82148/actions-setup-mysql@v1 | |
with: | |
distribution: 'mariadb' | |
mysql-version: '10.8' | |
auto-start: false | |
- name: Build database | |
run: | | |
cp .my.example.cnf .my.cnf | |
bash build.sh | |
- name: Regenerate sql files | |
run: | | |
mysqldump --version | |
cd bin | |
bash backup.sh ../schemas/ispyb/ | |
rm ../.my.cnf | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
if: github.ref == 'refs/heads/master' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update database sql files | |
title: Update database sql files | |
body: | | |
This is an automated pull request to update the ISPyB database sql files | |
Before merging this pull request you may want to: | |
* [ ] Update `HISTORY.md` to reflect the changes in this pull request | |
branch: update-schema-sql |