-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github Actions: switch to using Docker
Many of the free-to-use CI systems work great, but lack environments which are up to date. Github Actions is no exception, alas. In order to ensure that newer version of libraries can be accessed, use a Docker environment. The one Github Actions uses is stored on fvwmorg's Package site, which has pre-existing libraries installed. Any updates to dependencies will mean that the fvwm3-build:latest docker environment will need updating.
- Loading branch information
1 parent
8ba1ac7
commit 61b443a
Showing
2 changed files
with
15 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM docker.pkg.github.com/fvwmorg/fvwm3/fvwm3-build:latest | ||
|
||
COPY . /build | ||
WORKDIR /build | ||
|
||
RUN ./autogen.sh && ./configure && make |