diff options
| author | Selene ToyKeeper | 2023-11-05 14:10:22 -0700 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-11-05 14:10:22 -0700 |
| commit | 6e78c50d7c5b5a8a874f962f4cc8229b23f2cc06 (patch) | |
| tree | c8c251250c6b04d5eb863d2719bdb37037d86539 /.github/workflows/compile.yml | |
| parent | github actions: cache the Atmel DFP files between runs (diff) | |
| download | anduril-6e78c50d7c5b5a8a874f962f4cc8229b23f2cc06.tar.gz anduril-6e78c50d7c5b5a8a874f962f4cc8229b23f2cc06.tar.bz2 anduril-6e78c50d7c5b5a8a874f962f4cc8229b23f2cc06.zip | |
test: is apt-get any faster than apt?
Diffstat (limited to '.github/workflows/compile.yml')
| -rw-r--r-- | .github/workflows/compile.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index c6278d3..e3371ec 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -17,8 +17,8 @@ jobs: - name: Requirements run: | - sudo apt -qqy update - sudo apt -qqy install avr-libc binutils-avr gcc-avr unzip wget + sudo apt-get -qqy update + sudo apt-get -qqy install avr-libc binutils-avr gcc-avr unzip wget - name: Cache Atmel DFPs id: cache-dfp @@ -41,7 +41,7 @@ jobs: echo "ARTIFACT_NAME=${GITHUB_WORKFLOW}-${GITHUB_REF_NAME}-$(git rev-parse --short ${GITHUB_SHA})-${GITHUB_RUN_NUMBER}" >> "${GITHUB_ENV}" - name: Store Artifacts - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v3 with: name: ${{ env.ARTIFACT_NAME }} if-no-files-found: error |
