extend size of address when file is larger than 4GB (#72) #16
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: full-check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install_dependencies | |
run: sudo apt install libncurses5-dev | |
- name: first_build | |
run: | | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
# sudo make uninstall | |
# make distclean | |
# - name: second_build_to_test_build_twice | |
# run: | | |
# ./autogen.sh | |
# ./configure | |
# make | |
# sudo make install |