Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
amtlib-dot-dll committed Mar 28, 2018
1 parent bf57a2e commit bf4f301
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
@@ -0,0 +1,15 @@
sudo: required

language: c

notifications:
email: false

services:
- docker

before_install:
- docker build -t wine .

script:
- docker run --privileged wine
7 changes: 7 additions & 0 deletions Dockerfile
@@ -0,0 +1,7 @@
FROM fedora:latest
RUN dnf install -yq flatpak flatpak-builder xz
RUN adduser -U -m user
USER user
WORKDIR /home/user
ADD --chown=user:user . .
CMD ["/bin/bash", "-xe", "flatpak.sh"]
4 changes: 4 additions & 0 deletions flatpak.sh
@@ -0,0 +1,4 @@
#!/bin/sh
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user flathub io.atom.electron.BaseApp
flatpak-builder --arch=x86_64 --user --install-deps-from=flathub --sandbox --repo=repo build *.json

0 comments on commit bf4f301

Please sign in to comment.