From bd25620880cd6d3f27e2aece0f48b87cbe62c5dc Mon Sep 17 00:00:00 2001 From: Richard Anthony Date: Fri, 27 Jan 2023 19:09:03 +1100 Subject: [PATCH] cleanup --- .github/workflows/build.yml | 19 ------------------- .github/workflows/wasi.yml | 22 ---------------------- 2 files changed, 41 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/wasi.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 0cb6f994b..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Build the Docker image - run: docker build . --file tinygo/Dockerfile --tag restic:tinygo-$(date +%s) -) diff --git a/.github/workflows/wasi.yml b/.github/workflows/wasi.yml deleted file mode 100644 index 7ba235d63..000000000 --- a/.github/workflows/wasi.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Pull TinyGo - run: docker pull tinygo/tinygo:0.26.0 - - - name: Build Project - run: docker run -v $(pwd):$(pwd) -w $(pwd)/internal/restic tinygo/tinygo tinygo build -o restic.wasm -target wasi -