README: remove compiler flags #147
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: Solaris | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
solaris: | |
runs-on: macos-12 | |
steps: | |
- name: Bootstrap Solaris | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
uses: vmactions/solaris-vm@v0 | |
with: | |
prepare: | | |
#gcc -v | |
pkgutil -y -i git automake gcc #clang | |
- name: Build | |
run: | | |
uname -a | |
cat /etc/release | |
git clone https://github.com/alexander-naumov/screen.git | |
cd screen/src | |
./autogen.sh | |
echo "> ./configure --disable-pam CFLAGS='-Wall -DDEBUG'" | |
./configure --disable-pam CFLAGS="-Wall -DDEBUG" | |
make | |
echo "OK" |