Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: MacOS

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Configure
run: cmake .

- name: Build
run: make -j4
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Ubuntu

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: configure
run: cmake .

- name: build
run: make -j4
24 changes: 24 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Windows

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: configure
run: cmake .

- name: build
run: cmake --build . -j4
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Etc2Comp - Texture to ETC2 compressor

![Ubuntu](https://github.com/google/etc2comp-1/workflows/Ubuntu/badge.svg)
![MacOS](https://github.com/google/etc2comp-1/workflows/MacOS/badge.svg)
![Windows](https://github.com/google/etc2comp-1/workflows/Windows/badge.svg)

Etc2Comp is a command line tool that converts textures (e.g. bitmaps)
into the [ETC2](https://en.wikipedia.org/wiki/Ericsson_Texture_Compression)
format. The tool is built with a focus on encoding performance
Expand Down