From e72276569ac26fad475358c932af80e43f72fcec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Tue, 27 Jun 2023 08:31:15 +0200 Subject: [PATCH] chore: remove github workflow added by mistake --- .github/Dockerfile.ci | 22 ---------------------- .github/workflows/docker-image.yml | 23 ----------------------- 2 files changed, 45 deletions(-) delete mode 100644 .github/Dockerfile.ci delete mode 100644 .github/workflows/docker-image.yml diff --git a/.github/Dockerfile.ci b/.github/Dockerfile.ci deleted file mode 100644 index fdaa45f..0000000 --- a/.github/Dockerfile.ci +++ /dev/null @@ -1,22 +0,0 @@ -FROM ubuntu:18.04 - -RUN useradd -m avr-rust - -# Install dependencies -RUN apt-get update -y && apt-get install -y wget gcc binutils gcc-avr avr-libc - -RUN mkdir -p /code && chown avr-rust:avr-rust /code - -USER avr-rust - -# Install Rustup along with nightly -RUN wget -q https://sh.rustup.rs -O /tmp/rustup.sh && sh /tmp/rustup.sh -y --profile minimal --default-toolchain nightly -c rust-src --quiet -ENV PATH=/home/avr-rust/.cargo/bin:$PATH - -COPY --chown=avr-rust:avr-rust . /code - -WORKDIR /code - -ENV AVR_CPU_FREQUENCY_HZ=16000000 - -ENTRYPOINT ["cargo"] diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index dce698f..0000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Test suite - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - schedule: - - cron: "0 2 * * 1-5" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Prepare the Rust build environment - run: - docker build . --file .github/Dockerfile.ci --tag rust-avr-ci:$GITHUB_RUN_NUMBER - - - name: Compile the crate - run: - docker run rust-avr-ci:$GITHUB_RUN_NUMBER build --release -- 2.48.1