forked from nonstop/termit
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 2f33e7d Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 12:24:46 2022 +0200 tweak workflow 2 commit 2c0c178 Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 12:20:37 2022 +0200 version bump 3.1.1 commit 528dd8a Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 12:15:38 2022 +0200 tweak build workflow commit 5a52e44 Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 12:03:51 2022 +0200 adjust minimal cmake version commit c941257 Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 11:53:42 2022 +0200 remove gcc check commit df5c6f2 Author: SwissalpS <Luke@SwissalpS.ws> Date: Thu Jul 28 16:17:12 2022 +0200 adjust vte path commit 743aa6d Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 11:40:45 2022 +0200 Update build.yml commit 9c6f031 Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 11:36:58 2022 +0200 Update build.yml commit 72c25dc Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 11:29:00 2022 +0200 second attempt commit 4c3198b Author: Luke aka SwissalpS <Luke@SwissalpS.ws> Date: Fri Sep 9 11:16:12 2022 +0200 first attempt
- Loading branch information
Showing
4 changed files
with
34 additions
and
4 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,30 @@ | ||
name: Build termit | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
fedora_latest_build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: fedora:latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1000 | ||
- name: Prepare build environment. | ||
run: | | ||
dnf -y upgrade | ||
dnf -y install cmake gcc gtk+ vte291 vte291-devel lua lua-devel | ||
- name: Configure | ||
run: | | ||
cmake -DCMAKE_BUILD_TYPE=Release . | ||
- name: Build | ||
run: | | ||
make | ||
- name: Install | ||
run: | | ||
make install | ||
- name: Test version | ||
run: | | ||
termit --version |
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