Skip to content

Commit

Permalink
Generate via GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Feb 2, 2024
1 parent d580a98 commit 2522ee8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/cc-toml-generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Auto-generate CC Build TOML

on:
push:
branches:
- 'generate/aws-lc-sys*'

jobs:
generate-and-commit-linux-x86:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [ 1.72.1 ] # TODO: return to stable
os: [ ubuntu-latest, macos-12, macos-13-xlarge ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Run Generate Scripts
run: |
./scripts/build/generate_build_toml.sh
- name: Commit and Push Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "CC Build TOML: Linux x86"
branch: ${{ github.ref }}

0 comments on commit 2522ee8

Please sign in to comment.