Skip to content

Commit

Permalink
Bump deps, CI cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Jul 12, 2024
1 parent cf5d00d commit adb9a4a
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 56 deletions.
11 changes: 11 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ justfile
**/tests
demo/

####
#### This must match .gitignore ####
####

.DS_Store
target/
**/*.rs.bk
Expand All @@ -22,5 +25,13 @@ test_log*
pg_data/
config.yml
tests/output/
tests/mbtiles_temp_files/
tmp/
.aws-sam/

**/node_modules/
**/dist/

####
#### Above content must match .gitignore ####
####
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,8 @@ jobs:
for target in "aarch64-unknown-linux-musl" "x86_64-unknown-linux-musl"; do
echo -e "\n----------------------------------------------"
echo "Building $target"
export "CARGO_TARGET_$(echo $target | tr 'a-z-' 'A-Z_')_RUSTFLAGS"='-C strip=debuginfo'
cross build --release --target $target --package mbtiles
cross build --release --target $target --package martin
cross build --release --target $target --workspace
mkdir -p target_releases/$target
mv target/$target/release/martin target_releases/$target
mv target/$target/release/martin-cp target_releases/$target
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
####
#### This must match .dockerignore ####
####

.DS_Store
target/
**/*.rs.bk
Expand All @@ -13,3 +16,10 @@ tests/output/
tests/mbtiles_temp_files/
tmp/
.aws-sam/

**/node_modules/
**/dist/

####
#### Above content must match .dockerignore ####
####
Loading

0 comments on commit adb9a4a

Please sign in to comment.