Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Create GitHub Workflows #1

Draft
wants to merge 26 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3b444a2
CI: migrate copyright check job to GitHub Actions
fkondej Jan 18, 2025
0a952af
CI: migrate cargo fmt and clippy jobs to GitHub Actions
fkondej Jan 18, 2025
aecda5d
CI: migrate one build and one test job to GitHub Actions
fkondej Jan 18, 2025
b661231
CI: remove artifacts and add jobs not using cache
fkondej Jan 18, 2025
24cad57
CI: add arm64 support
fkondej Jan 18, 2025
1388156
CI: cleanup naming
fkondej Jan 18, 2025
e4ffa3c
CI: print more dirk usage
fkondej Jan 18, 2025
182cc55
CI: update job names
fkondej Jan 18, 2025
b9cd767
CI: print more disk usage
fkondej Jan 18, 2025
9bba10e
CI: continue-on-error
fkondej Jan 18, 2025
f3ca47c
CI: more debug message
fkondej Jan 18, 2025
912a150
CI: set CARGO_HOME
fkondej Jan 18, 2025
0445ab1
CI: remove target from cache
fkondej Jan 18, 2025
1da4c6e
CI: change cache keys
fkondej Jan 18, 2025
b16dfcb
CI: update paths in cache
fkondej Jan 18, 2025
8cfec52
CI: migrate build wasm build to GitHub Actions
fkondej Jan 18, 2025
e802346
CI: migrate build stable to GitHub Actions
fkondej Jan 18, 2025
bf5282d
CI: fix docker image for stable
fkondej Jan 18, 2025
e14cfb6
CI: run builds in parallel
fkondej Jan 18, 2025
fd55a2b
CI: migrate tests for rust stable to GitHub Actions
fkondej Jan 18, 2025
289554d
CI: introduce ci-rust-nigthly docker image for CI
fkondej Jan 20, 2025
807d8e9
CI: run docker-ci on my branch
fkondej Jan 20, 2025
bfcfee1
CI: modify dockerimage
fkondej Jan 20, 2025
fdaf42f
CI: add workdir into ci dockerfile
fkondej Jan 20, 2025
428af0e
CI: improve Dockerfile and built only for amd to speed up testing
fkondej Jan 21, 2025
4ce4cc2
CI: run tests on custom docker image
fkondej Jan 21, 2025
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
Prev Previous commit
Next Next commit
CI: update job names
  • Loading branch information
fkondej committed Jan 18, 2025
commit 182cc55f6a6d7f4a1e609639963dce4d8af99efc
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Cache Cargo Dependencies and Build Artifacts
- name: Cache Cargo Dependencies
uses: actions/cache@v4
with:
path: |
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Cache Cargo Dependencies and Build Artifacts
- name: Cache Cargo Dependencies
uses: actions/cache@v4
with:
path: |
Expand Down
Loading