Commit 28e4f0c612d075a52eb69c5e909f1ae14ab951f1
1 parent
891d9dbb
Exists in
develop
Testing macos build.
Showing
1 changed file
with
27 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,27 @@ |
| 1 | +--- | |
| 2 | +name: CodeQL | |
| 3 | +on: | |
| 4 | + push: | |
| 5 | + branches: | |
| 6 | + [ develop ] | |
| 7 | +jobs: | |
| 8 | + macos-build: | |
| 9 | + name: Build for mac | |
| 10 | + runs-on: macos-latest | |
| 11 | + - name: Checkout | |
| 12 | + uses: actions/checkout@v3 | |
| 13 | + - uses: oprypin/find-latest-tag@v1 | |
| 14 | + id: gettag | |
| 15 | + with: | |
| 16 | + repository: PerryWerneck/lib3270 | |
| 17 | + releases-only: true | |
| 18 | + - name: Install Pre reqs | |
| 19 | + run: | | |
| 20 | + brew update | |
| 21 | + brew install automake binutils coreutils curl gettext libtool openssl pkgconfig | |
| 22 | + brew upgrade | |
| 23 | + - name: build | |
| 24 | + run: | | |
| 25 | + ./autogen.sh | |
| 26 | + make all | |
| 27 | + | ... | ... |