We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c220f4b commit b4989c6Copy full SHA for b4989c6
3 files changed
.github/Dockerfile.CI
@@ -0,0 +1,14 @@
1
+FROM ubuntu:20.04
2
+
3
+# Ubuntu 20.04 timezone fix
4
+ENV TZ=UTC
5
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
6
7
+RUN apt-get update && apt-get install --no-install-recommends -y build-essential libgl1-mesa-dev libsdl2-dev libvorbis-dev libfreetype6-dev mingw-w64
8
9
+RUN mkdir -p /staging/openarena
10
11
+COPY . /staging/openarena
12
13
+RUN cd /staging/openarena && \
14
+./travis-ci-build.sh
.github/workflows/main.yml
@@ -0,0 +1,12 @@
+name: Build
+on: [push]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repo
+ uses: actions/checkout@v2
+ - name: Build it
+ run: docker build . -f .github/Dockerfile.CI -t openarena_test
.travis.yml
0 commit comments