Skip to content

Commit

Permalink
Tidy .github/workflows/build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sjackman committed Aug 22, 2022
1 parent fd57414 commit 753eca8
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
name: Build bootstrap binaries for glibc on Linux

on:
workflow_call:

# pull_request:
#paths:
# - .github/workflows/build.yml
# - 'build-*.sh'
# - debian7/Dockerfile
pull_request:
paths:
- .github/workflows/build.yml
- "build-*.sh"
- debian7/Dockerfile

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
binary: [
"binutils",
"bison",
"gawk",
"gcc",
"make",
"python3",
"sed",
]
binary:
- binutils
- bison
- gawk
- gcc
- make
- python3
- sed
include:
- container: debian7
steps:
Expand All @@ -44,6 +41,6 @@ jobs:

- name: Upload binaries to GitHub Actions
uses: actions/upload-artifact@v3
with:
with:
name: Bootstrap binaries
path: bootstrap-binaries

0 comments on commit 753eca8

Please sign in to comment.