-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b8db1e
commit 9fb8414
Showing
5 changed files
with
142 additions
and
61 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,99 @@ | ||
name: Build & Test | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
linux: | ||
name: Build (Linux) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup asdf | ||
uses: asdf-vm/actions/setup@v2 | ||
- name: Cache asdf | ||
id: cache-asdf | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/home/runner/.asdf | ||
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }} | ||
restore-keys: | | ||
${{ runner.os }}-asdf- | ||
- name: Install dependencies in .tool-versions | ||
uses: asdf-vm/actions/install@v2 | ||
- name: Install cross-compiler toolchain | ||
run: sudo apt-get -y install gcc-aarch64-linux-gnu | ||
- name: Run build | ||
run: just build-all --id linux | ||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() }} | ||
with: | ||
name: code | ||
path: /home/runner/work/odict | ||
darwin: | ||
name: Build (Darwin) | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup asdf | ||
uses: asdf-vm/actions/setup@v2 | ||
- name: Cache asdf | ||
id: cache-asdf | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/home/runner/.asdf | ||
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }} | ||
restore-keys: | | ||
${{ runner.os }}-asdf- | ||
- name: Install dependencies in .tool-versions | ||
uses: asdf-vm/actions/install@v2 | ||
- name: Run build | ||
run: just build-all --id darwin | ||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() }} | ||
with: | ||
name: code | ||
path: /home/runner/work/odict | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup asdf | ||
uses: asdf-vm/actions/setup@v2 | ||
- name: Cache asdf | ||
id: cache-asdf | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/home/runner/.asdf | ||
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }} | ||
restore-keys: | | ||
${{ runner.os }}-asdf- | ||
- name: Cache Poetry dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
/home/runner/.venv | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('**/python/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-poetry- | ||
- name: Install dependencies in .tool-versions | ||
uses: asdf-vm/actions/install@v2 | ||
- name: Run tests | ||
env: | ||
POETRY_VIRTUALENVS_IN_PROJECT: true | ||
run: just test | ||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() }} | ||
with: | ||
name: code | ||
path: /home/runner/work/odict |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
ARG GORELEASER_CROSS_VERSION 0.21.3 | ||
|
||
FROM ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} AS goreleaser-cross | ||
|
||
RUN apt-get update -y && apt-get upgrade -y | ||
RUN apt-get install -y pkg-config libxml2-dev libicu-dev gcc-multilib |
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