Support debugging eXecute-only ELF segments #482
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 with Cygwin | |
on: | |
push: | |
branches: | |
- "master" | |
- "flake" | |
- "ga" | |
pull_request: | |
branches: | |
- "master" | |
# run workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install cached Cygwin | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: C:\tools\cygwin | |
key: 'cygwin' | |
- name: Install Cygwin | |
if: steps.cache.outputs.cache-hit != 'true' | |
uses: egor-tensin/[email protected] | |
with: | |
packages: gcc-core make chere | |
- name: make matrix | |
run: | | |
cd "$GITHUB_WORKSPACE" | |
./configure | |
cat config.log | |
make -j$(nproc) check o//test/blink | |
shell: C:\tools\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}' | |
- name: Test with VFS enabled | |
run: | | |
cd "$GITHUB_WORKSPACE" | |
./configure --enable-vfs | |
cat config.log | |
export BLINK_PREFIX="o" | |
make -j$(nproc) check o//test/blink | |
shell: C:\tools\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}' |