-
Notifications
You must be signed in to change notification settings - Fork 34
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 #129 from rejeep/travis-os-matrix
Add Xenial support
- Loading branch information
Showing
8 changed files
with
135 additions
and
43 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM travisci/ci-sardonyx:packer-1564753982-0c06deb6 | ||
|
||
# hadolint ignore=DL3008 | ||
RUN apt-get update -y \ | ||
&& apt-get install --no-install-recommends -y \ | ||
autoconf \ | ||
autogen \ | ||
automake \ | ||
build-essential \ | ||
git \ | ||
libgnutls-dev \ | ||
libncurses-dev \ | ||
libtool \ | ||
texinfo \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
USER travis | ||
WORKDIR /home/travis | ||
COPY build-emacs.sh /home/travis/ | ||
CMD ["./build-emacs.sh"] |
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,7 @@ | ||
recipe 'emacs-26.1-travis-linux-xenial' do | ||
tar_gz 'https://github.com/rejeep/evm/releases/download/v0.18.0/emacs-26.1-travis.tar.gz' | ||
|
||
install do | ||
copy build_path, installations_path | ||
end | ||
end |
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,7 @@ | ||
recipe 'emacs-26.2-travis-linux-xenial' do | ||
tar_gz 'https://github.com/rejeep/evm/releases/download/v0.18.0/emacs-26.2-travis.tar.gz' | ||
|
||
install do | ||
copy build_path, installations_path | ||
end | ||
end |
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,7 @@ | ||
recipe 'emacs-26.3-travis-linux-xenial' do | ||
tar_gz 'https://github.com/rejeep/evm/releases/download/v0.18.0/emacs-26.3-travis.tar.gz' | ||
|
||
install do | ||
copy build_path, installations_path | ||
end | ||
end |