Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
E85Addict committed Jan 4, 2023
1 parent e25497f commit 1f049eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
jobs:
build:
name: build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
target: [armv7-linux-androideabi, aarch64-linux-android]
Expand Down Expand Up @@ -38,10 +38,10 @@ jobs:
mv -f ./target/${{ matrix.target }}/release/cmpr ./output/cmpr-${{ matrix.arch }}
- id: date
run: echo ::set-output name=date::$(date +'%Y%m%d')
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT

- name: Upload
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@master
with:
file: ./output/*
release_name: cmpr
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![no_std]
#![feature(let_chains)]

use core::ops::Deref;

Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![no_main]
#![feature(slice_as_chunks)]
#![feature(let_chains)]

use cmpr::{cprintln, Mmap, RawArgs};
use std::{fs::File, os::unix::prelude::AsRawFd, path::Path};
Expand Down

0 comments on commit 1f049eb

Please sign in to comment.