Skip to content

Commit

Permalink
Shorten, spelling, info text for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz authored Nov 18, 2023
1 parent c83d9b4 commit 39ce508
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,34 @@ jobs:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake
- name: configure
run: ./configure
- name: Compile
run: bmake
- name: Run regress
- name: Configure
run: |
cat /etc/os-release
./configure
- name: Build and test
run: bmake regress
linux_sandboxed:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake
- name: configure
run: ./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1"
- name: Compile
run: bmake
- name: Run regress
- name: Configure
run: |
cat /etc/os-release
./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1"
- name: Build and test
run: bmake regress
macos_standard:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: brew install bmake
- name: configure
- name: Configure
run: ./configure
- name: Compile
run: bmake
- name: Run regress
run: bmake regress
- name: Build and test
run: bmake regress
alpine_sandboxed:
runs-on: ubuntu-latest
steps:
Expand All @@ -60,15 +58,19 @@ jobs:
bmake
zlib-dev
shell-name: alpine-aarch64.sh
- name: Compile and run regress on x86_64
- name: Configure, build, and test on x86_64
run: |
cat /etc/alpine-release
./configure CPPFLAGS="-DENABLE_SECCOMP_FILTER=1"
cat config.log
bmake
bmake regress
shell: alpine-x86_64.sh {0}
- name: Compile and run regress on aarc64
- name: Configure, build, and test on aarch64
run: |
cat /etc/alpine-release
./configure
cat config.log
bmake
bmake regress
shell: alpine-aarch64.sh {0}

0 comments on commit 39ce508

Please sign in to comment.