-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from spk121/guile-3.0.4
Guile 3.0.4
- Loading branch information
Showing
5 changed files
with
62 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Ubuntu Bionic w/ Guile 2.2 | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-18.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: env | ||
run: export LANG=C.UTF-8 TERM=dumb VERBOSE=true DEBIAN_FRONTEND=noninteractive TZ=America/Los_Angeles | ||
- name: install packages | ||
run: sudo apt-get install -y libgirepository1.0-dev guile-2.2-dev gnulib texlive | ||
- name: look for guile | ||
run: ls -l /usr/bin/gu* | ||
- name: make dist directory | ||
run: mkdir `pwd`/dist | ||
- name: bootstrap | ||
run: ./bootstrap | ||
- name: configure | ||
run: GUILD=/usr/bin/guild ./configure --enable-hardening --with-gnu-filesystem-hierarchy --prefix=`pwd`/dist | ||
- name: make | ||
run: make | ||
- name: make check | ||
run: make check | ||
- name: make install | ||
run: make install | ||
- name: make distcheck | ||
run: GUILD=/usr/bin/guild make distcheck | ||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: dist | ||
path: dist | ||
- name: Uncompress tarballs | ||
run: gunzip *.tar.gz | ||
- name: Archive tarball | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: tarball | ||
path: guile_gi*tar | ||
- name: Archive test logs | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: logs | ||
path: test-suite.log |
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
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
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
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